- {proofFiles.map((file, index) => {
- const fileName = file.name || file.fileName || `专业能力证明${index + 1}.pdf`;
- return (
-
-
- {fileName}
-
- );
- })}
+ {proofMaterialUrl.length ? proofMaterialUrl.map((item) => (
+
- ) : "-"}
+ )) : "-"
+}
diff --git a/src/pages/Container/EnterpriseInfo/ResignationApply/index.js b/src/pages/Container/EnterpriseInfo/ResignationApply/index.js
index ed7e681..2bcf588 100644
--- a/src/pages/Container/EnterpriseInfo/ResignationApply/index.js
+++ b/src/pages/Container/EnterpriseInfo/ResignationApply/index.js
@@ -223,6 +223,7 @@ function AddModal({ open, staffOptions, requestAdd, onCancel, onSuccess }) {
setSubmitting(true);
values.applyTime =
values.applyTime?.format?.("YYYY-MM-DD HH:mm:ss") || values.applyTime;
+
values.expectedResignDate =
values.expectedResignDate?.format?.("YYYY-MM-DD") ||
values.expectedResignDate;
@@ -342,7 +343,9 @@ function ViewModal({ open, currentId, requestDetail, onCancel }) {
{info.remark}
- {info.reportFileUrl || "-"}
+
+ 查看
+
diff --git a/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx b/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx
index c784488..364cc2b 100644
--- a/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx
+++ b/src/pages/Container/QualApplication/FilingForm/components/OrgPersonnelSelectModal.jsx
@@ -95,7 +95,7 @@ function OrgPersonnelSelectModalInner(props) {
columns={[
{ title: "人员姓名", dataIndex: "userName" },
{ title: "类型", dataIndex: "personTypeName" },
- { title: "职务", dataIndex: "positionName" },
+
{ title: "职称", dataIndex: "titleName" },
{
title: "操作",
diff --git a/src/pages/Container/QualApplication/FilingForm/components/PersonnelStep.jsx b/src/pages/Container/QualApplication/FilingForm/components/PersonnelStep.jsx
index 2724f10..5e86751 100644
--- a/src/pages/Container/QualApplication/FilingForm/components/PersonnelStep.jsx
+++ b/src/pages/Container/QualApplication/FilingForm/components/PersonnelStep.jsx
@@ -38,7 +38,7 @@ export default function PersonnelStep({
{ title: "序号", width: 60, render: (_, __, index) => index + 1 },
{ title: "人员姓名", dataIndex: "userName" },
{ title: "类型", dataIndex: "personTypeName" },
- { title: "职务", dataIndex: "positionName" },
+
{ title: "职称", dataIndex: "titleName" },
{
title: "操作",
diff --git a/src/pages/Container/QualificationReview/FilingTabs/index.js b/src/pages/Container/QualificationReview/FilingTabs/index.js
index 14afc47..b55da78 100644
--- a/src/pages/Container/QualificationReview/FilingTabs/index.js
+++ b/src/pages/Container/QualificationReview/FilingTabs/index.js
@@ -124,7 +124,7 @@ const FilingTabs = ({
{ title: "序号", width: 60, render: (_, __, i) => i + 1 },
{ title: "人员姓名", dataIndex: "personName", width: 100 },
{ title: "类型", dataIndex: "personTypeName", width: 100 },
- { title: "职务", dataIndex: "positionName", width: 120 },
+
{ title: "职称", dataIndex: "titleName", width: 100 },
{ title: "操作", width: 80,
render: (_, record) => (
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 6/6] 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) {