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) {