dev-1.3
tangjie 2026-08-08 14:36:44 +08:00
parent 942fc4a55f
commit 043dc53da7
3 changed files with 31 additions and 35 deletions

View File

@ -45,12 +45,6 @@ export default function EquipmentStep({
>
<Space>
<span style={{ fontWeight: 600 }}>申请单位装备清单</span>
<span style={{ color: "#666" }}>
设备总价值{(equipmentList || [])
.reduce((sum, item) => sum + (item.equipmentValue || 0), 0)
.toLocaleString()}{" "}
</span>
</Space>
{!disabled && (
<Space size="small">
@ -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,

View File

@ -72,7 +72,7 @@ export default function OrgPersonnelSelectModal(props) {
<>
<Modal
open={open}
title="添加备案人员"
title="选择已维护人员"
width={900}
destroyOnHidden
onCancel={onCancel}
@ -94,6 +94,7 @@ export default function OrgPersonnelSelectModal(props) {
dataSource={dataSource}
rowSelection={{
selectedRowKeys,
fixed: "left",
preserveSelectedRowKeys: true,
onChange: (keys, rows) => {
setSelectedRowKeys(keys);

View File

@ -351,9 +351,21 @@ function FilingFormPage(props) {
),
forceRender: true,
},
{
key: "personnel",
label: "2. 专职人员备案",
children: (
<PersonnelStep
personnelList={detail?.personnelList || []}
disabled={readOnly}
onAdd={handlePersonnelAdd}
onRemove={handlePersonnelRemove}
/>
),
},
{
key: "materials",
label: "2. 备案材料上传",
label: "4. 申请材料",
children: (
<MaterialStep
materials={detail?.materials || []}
@ -362,9 +374,22 @@ function FilingFormPage(props) {
/>
),
},
{
key: "equipment",
label: "5. 设备清单",
children: (
<EquipmentStep
equipmentList={detail?.equipmentList || []}
disabled={readOnly}
onAdd={handleEquipmentAdd}
onRemove={handleEquipmentRemove}
onUploadCalibration={handleEquipmentCalibration}
/>
),
},
{
key: "commitment",
label: "3. 法定代表人承诺书",
label: "6. 机构负责人签字",
children: (
<CommitmentStep
form={commitmentForm}
@ -377,31 +402,8 @@ function FilingFormPage(props) {
),
forceRender: true,
},
{
key: "personnel",
label: "4. 专职人员备案",
children: (
<PersonnelStep
personnelList={detail?.personnelList || []}
disabled={readOnly}
onAdd={handlePersonnelAdd}
onRemove={handlePersonnelRemove}
/>
),
},
{
key: "equipment",
label: "5. 装备清单",
children: (
<EquipmentStep
equipmentList={detail?.equipmentList || []}
disabled={readOnly}
onAdd={handleEquipmentAdd}
onRemove={handleEquipmentRemove}
onUploadCalibration={handleEquipmentCalibration}
/>
),
},
];
const stepIndex = STEP_ITEMS.findIndex((item) => item.key === activeStep);