From 28f8106c4765a958b1ebbab8f2d12e62989e4fd7 Mon Sep 17 00:00:00 2001 From: zch Date: Mon, 14 Jul 2025 16:02:01 +0800 Subject: [PATCH 1/2] =?UTF-8?q?refactor(dms):=20=E4=BC=98=E5=8C=96=20DMS?= =?UTF-8?q?=20=E6=A8=A1=E5=9D=97=E5=A4=9A=E4=B8=AA=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=9A=84=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整表格列的显示顺序和可见性 - 修改部分字段的标签名称 - 移除不必要的功能按钮 - 优化表单布局和字段验证 --- src/views/dms/dmsBaseMaintStation/index.vue | 6 +- src/views/dms/dmsBillsFaultInstance/index.vue | 108 +++++++++--------- .../dms/dmsBillsInspectInstance/index.vue | 16 +-- src/views/dms/dmsBillsMaintInstance/index.vue | 42 +++---- src/views/dms/dmsPlanInspect/index.vue | 24 ++-- src/views/dms/dmsPlanMaint/index.vue | 68 +++++------ 6 files changed, 134 insertions(+), 130 deletions(-) diff --git a/src/views/dms/dmsBaseMaintStation/index.vue b/src/views/dms/dmsBaseMaintStation/index.vue index 24cc275..fddb189 100644 --- a/src/views/dms/dmsBaseMaintStation/index.vue +++ b/src/views/dms/dmsBaseMaintStation/index.vue @@ -56,7 +56,7 @@ - + @@ -178,7 +178,7 @@ const columns = ref([ { key: 0, label: `主键标识`, visible: false }, { key: 1, label: `租户编号`, visible: false }, { key: 2, label: `设备类型`, visible: true }, - { key: 3, label: `保养标准ID`, visible: true }, + { key: 3, label: `保养标准编号`, visible: true }, { key: 4, label: `部位编号`, visible: true }, { key: 5, label: `部位名称`, visible: true }, { key: 6, label: `激活标识`, visible: true }, @@ -198,6 +198,7 @@ const initFormData: DmsBaseMaintStationForm = { maintStationName: undefined, activeFlag: '1', remark: undefined, + maintStandardCode: undefined, maintProjectIds: [] } const data = reactive>({ @@ -211,6 +212,7 @@ const data = reactive