访客修改

This commit is contained in:
FLL
2025-08-04 17:06:09 +08:00
parent 14d70b22d1
commit 7ad4613fc8
6 changed files with 107 additions and 35 deletions

View File

@@ -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 = () => [
{