From 2ef8e75130abeeccd39d71440270b12b040c952a Mon Sep 17 00:00:00 2001 From: tangjie <122778500@qq.com> Date: Tue, 7 Jul 2026 15:45:52 +0800 Subject: [PATCH] feat --- src/pages/Container/EnterpriseInfo/PersonnelChange/index.js | 4 ++-- .../QualApplication/FilingForm/components/BasicInfoStep.jsx | 6 +++++- src/pages/Container/QualApplication/FilingForm/index.js | 5 ++++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/pages/Container/EnterpriseInfo/PersonnelChange/index.js b/src/pages/Container/EnterpriseInfo/PersonnelChange/index.js index e608b08..c44b826 100644 --- a/src/pages/Container/EnterpriseInfo/PersonnelChange/index.js +++ b/src/pages/Container/EnterpriseInfo/PersonnelChange/index.js @@ -172,8 +172,8 @@ function PersonnelChangePage(props) { width: 140, render: (_, record) => { const code = record.resignAuditStatus ?? record.auditStatus ?? record.auditStatusCode; - const label = RESIGN_AUDIT_STATUS_LABEL[code] ?? "-"; - return {label}; + return RESIGN_AUDIT_STATUS_LABEL[code] ? {label} : "-"; + }, }, { diff --git a/src/pages/Container/QualApplication/FilingForm/components/BasicInfoStep.jsx b/src/pages/Container/QualApplication/FilingForm/components/BasicInfoStep.jsx index 17625b7..00ffa23 100644 --- a/src/pages/Container/QualApplication/FilingForm/components/BasicInfoStep.jsx +++ b/src/pages/Container/QualApplication/FilingForm/components/BasicInfoStep.jsx @@ -91,7 +91,11 @@ export default function BasicInfoStep({ form, disabled }) { - + diff --git a/src/pages/Container/QualApplication/FilingForm/index.js b/src/pages/Container/QualApplication/FilingForm/index.js index b151dc2..e3343ff 100644 --- a/src/pages/Container/QualApplication/FilingForm/index.js +++ b/src/pages/Container/QualApplication/FilingForm/index.js @@ -151,7 +151,10 @@ function FilingFormPage(props) { delete params.materials; } if (params.personnelList) { - body[`qualFilingPersonnel${word}AddCmds`] = params.personnelList; + body[`qualFilingPersonnel${word}AddCmds`] = params.personnelList.map((item) => ({ + ...item, + personName: item.userName, + })); delete params.personnelList; } if (params.equipmentList) {