feat:工单池添加上报类型
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2025-08-08 16:22:04 +08:00
parent 5494d206d4
commit 899cefb73a
7 changed files with 338 additions and 34 deletions

View File

@@ -51,6 +51,16 @@ export const columns: VxeGridProps['columns'] = [
field: 'typeName',
minWidth: 150,
},
{
title: '上报类型',
field: 'reportingType',
slots: {
default: ({row}) => {
return renderDict(row.reportingType, 'wy_gdsblx');
},
},
width: 100,
},
{
title: '派单时间',
field: 'dispatchTime',
@@ -164,6 +174,15 @@ export const modalSchema: FormSchemaGetter = () => [
},
rules: 'selectRequired',
},
{
label: '上报类型',
fieldName: 'reportingType',
component: 'Select',
componentProps: {
options: getDictOptions('wy_gdsblx'),
},
rules: 'selectRequired',
},
// {
// label: '状态',
// fieldName: 'status',
@@ -206,6 +225,7 @@ export const modalSchema: FormSchemaGetter = () => [
fieldName: 'location',
component: 'Input',
rules: 'selectRequired',
formItemClass:'col-span-2'
},
// {
// label: '计划完成时间',
@@ -234,6 +254,7 @@ export const modalSchema: FormSchemaGetter = () => [
label: '备注',
fieldName: 'remark',
component: 'Textarea',
formItemClass:'col-span-2'
},
// {
// label: '是否超时',