diff --git a/src/views/eam/item/applicationRecord/applicationRecordMain.data.ts b/src/views/eam/item/applicationRecord/applicationRecordMain.data.ts index fd892f9..3343122 100644 --- a/src/views/eam/item/applicationRecord/applicationRecordMain.data.ts +++ b/src/views/eam/item/applicationRecord/applicationRecordMain.data.ts @@ -45,6 +45,23 @@ export const ApplicationRecordMain = useCrudSchemas(reactive([ table: { }, }, + { + label: '是否已审批', + field: 'isApprove', + sort: 'custom', + dictType: DICT_TYPE.TRUE_FALSE, + dictClass: 'string', + isSearch: true, + isTable: true, + isForm: false, + table: { + width: 150 + }, + tableForm: { + type: 'Select', + disabled: false + } + }, { label: '审批时间', field: 'approveTime', diff --git a/src/views/eam/item/itemApplyMain/itemApplyMain.data.ts b/src/views/eam/item/itemApplyMain/itemApplyMain.data.ts index 6c58558..ef98f88 100644 --- a/src/views/eam/item/itemApplyMain/itemApplyMain.data.ts +++ b/src/views/eam/item/itemApplyMain/itemApplyMain.data.ts @@ -43,7 +43,23 @@ export const ItemApplyMain = useCrudSchemas(reactive([ isForm: false, isSearch: false, }, - + { + label: '是否已审批', + field: 'isApprove', + sort: 'custom', + dictType: DICT_TYPE.TRUE_FALSE, + dictClass: 'string', + isSearch: true, + isTable: true, + isForm: false, + table: { + width: 150 + }, + tableForm: { + type: 'Select', + disabled: false + } + }, { label: '状态', field: 'status',