From 200c6ebdaa8b3d5ccef9858f9657912bdeff5b50 Mon Sep 17 00:00:00 2001 From: "YEJIAXING-PC\\lenovo" <591141169@qq.com> Date: Thu, 13 Feb 2025 10:36:48 +0800 Subject: [PATCH] =?UTF-8?q?EAM=E6=89=80=E6=9C=89=E7=9A=84BUG=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../applicationRecordMain.data.ts | 17 +++++++++++++++++ .../item/itemApplyMain/itemApplyMain.data.ts | 18 +++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) 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',