Browse Source

SBBJ-813电脑端检修工单增加创建时间、完成时间字段

master
zhaoyiran 2 weeks ago
parent
commit
71d9fa0fa7
  1. 27
      src/views/eam/device/deviceinspectionjob/deviceInspectionMain.data.ts

27
src/views/eam/device/deviceinspectionjob/deviceInspectionMain.data.ts

@ -326,13 +326,16 @@ export const DeviceInspectionMain = useCrudSchemas(reactive<CrudSchema[]>([
},
},
},
// {
// label: '创建时间',
// field: 'createTime',
// sort: 'custom',
// formatter: dateFormatter,
// isForm: false,
// },
{
label: '创建时间',
field: 'createTime',
sort: 'custom',
formatter: dateFormatter,
isForm: false,
table: {
width: '180',
},
},
{
label: '描述',
field: 'describes',
@ -407,6 +410,16 @@ export const DeviceInspectionMain = useCrudSchemas(reactive<CrudSchema[]>([
width: '230',
},
},
{
label: '完成时间',
field: 'completionTime',
sort: 'custom',
formatter: dateFormatter,
isForm: false,
table: {
width: '180',
},
},
{
label: '操作',
field: 'action',

Loading…
Cancel
Save