访客修改
This commit is contained in:
@@ -24,6 +24,14 @@ export const querySchema: FormSchemaGetter = () => [
|
||||
fieldName: 'status',
|
||||
label: '状态',
|
||||
},
|
||||
{
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
options: getDictOptions('pro_processing_weight'),
|
||||
},
|
||||
fieldName: 'processingWeight',
|
||||
label: '处理权重',
|
||||
},
|
||||
];
|
||||
|
||||
export const columns: VxeGridProps['columns'] = [
|
||||
@@ -148,6 +156,15 @@ export const modalSchema: FormSchemaGetter = () => [
|
||||
componentProps: {},
|
||||
rules: 'selectRequired',
|
||||
},
|
||||
{
|
||||
label: '处理权重',
|
||||
fieldName: 'processingWeight',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
options: getDictOptions('pro_processing_weight'),
|
||||
},
|
||||
rules: 'selectRequired',
|
||||
},
|
||||
// {
|
||||
// label: '状态',
|
||||
// fieldName: 'status',
|
||||
@@ -216,9 +233,8 @@ export const modalSchema: FormSchemaGetter = () => [
|
||||
// },
|
||||
{
|
||||
label: '备注',
|
||||
fieldName: 'remarkremark',
|
||||
fieldName: 'remark',
|
||||
component: 'Textarea',
|
||||
rules: 'required',
|
||||
},
|
||||
// {
|
||||
// label: '是否超时',
|
||||
@@ -230,6 +246,15 @@ export const modalSchema: FormSchemaGetter = () => [
|
||||
// },
|
||||
// rules: 'selectRequired',
|
||||
// },
|
||||
{
|
||||
label: '工单图片',
|
||||
fieldName: 'orderImgUrl',
|
||||
component: 'ImageUpload',
|
||||
componentProps: {
|
||||
maxCount: 1,
|
||||
},
|
||||
formItemClass: 'col-span-2',
|
||||
},
|
||||
];
|
||||
export const ordersModalSchema: FormSchemaGetter = () => [
|
||||
{
|
||||
|
Reference in New Issue
Block a user