From 043dc53da7e53e743ba11e0973bab184279d6ba4 Mon Sep 17 00:00:00 2001 From: tangjie <122778500@qq.com> Date: Sat, 8 Aug 2026 14:36:44 +0800 Subject: [PATCH] fix --- .../FilingForm/components/EquipmentStep.jsx | 7 --- .../components/OrgPersonnelSelectModal.jsx | 3 +- .../QualApplication/FilingForm/index.js | 56 ++++++++++--------- 3 files changed, 31 insertions(+), 35 deletions(-) diff --git a/src/pages/Container/QualApplication/FilingForm/components/EquipmentStep.jsx b/src/pages/Container/QualApplication/FilingForm/components/EquipmentStep.jsx index 14fcf8c..dd5a000 100644 --- a/src/pages/Container/QualApplication/FilingForm/components/EquipmentStep.jsx +++ b/src/pages/Container/QualApplication/FilingForm/components/EquipmentStep.jsx @@ -45,12 +45,6 @@ export default function EquipmentStep({ > 申请单位装备清单 - - 设备总价值:{(equipmentList || []) - .reduce((sum, item) => sum + (item.equipmentValue || 0), 0) - .toLocaleString()}{" "} - 元 - {!disabled && ( @@ -83,7 +77,6 @@ export default function EquipmentStep({ { title: "装备名称", dataIndex: "deviceName", ellipsis: true }, { title: "规格型号", dataIndex: "deviceModel", ellipsis: true }, { title: "生产厂家", dataIndex: "manufacturer" }, - { title: "设备价值(元)", dataIndex: "equipmentValue", width: 150 }, { title: "计量检定情况", width: 180, diff --git a/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx b/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx index e93bba8..3c19831 100644 --- a/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx +++ b/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx @@ -72,7 +72,7 @@ export default function OrgPersonnelSelectModal(props) { <> { setSelectedRowKeys(keys); diff --git a/src/pages/Container/QualApplication/FilingForm/index.js b/src/pages/Container/QualApplication/FilingForm/index.js index a5c0a70..71846da 100644 --- a/src/pages/Container/QualApplication/FilingForm/index.js +++ b/src/pages/Container/QualApplication/FilingForm/index.js @@ -351,9 +351,21 @@ function FilingFormPage(props) { ), forceRender: true, }, + { + key: "personnel", + label: "2. 专职人员备案", + children: ( + + ), + }, { key: "materials", - label: "2. 备案材料上传", + label: "4. 申请材料", children: ( ), }, + { + key: "equipment", + label: "5. 设备清单", + children: ( + + ), + }, { key: "commitment", - label: "3. 法定代表人承诺书", + label: "6. 机构负责人签字", children: ( - ), - }, - { - key: "equipment", - label: "5. 装备清单", - children: ( - - ), - }, + + ]; const stepIndex = STEP_ITEMS.findIndex((item) => item.key === activeStep);