From 96a70d39c359b642909464cf5e85f0e965e5d01b Mon Sep 17 00:00:00 2001
From: tangjie <122778500@qq.com>
Date: Mon, 17 Aug 2026 14:09:31 +0800
Subject: [PATCH] fix
---
.../Container/EnterpriseInfo/OrgInfo/index.js | 70 +++++-----
.../QualReviewForm/ReviewModal.js | 126 ++++++++----------
2 files changed, 94 insertions(+), 102 deletions(-)
diff --git a/src/pages/Container/EnterpriseInfo/OrgInfo/index.js b/src/pages/Container/EnterpriseInfo/OrgInfo/index.js
index 92e56f0..f4fb8f6 100644
--- a/src/pages/Container/EnterpriseInfo/OrgInfo/index.js
+++ b/src/pages/Container/EnterpriseInfo/OrgInfo/index.js
@@ -52,7 +52,9 @@ const splitContactNamePhone = (value) => {
return {
// 按首个 / 拆分;/后全部作为电话(剔除首尾空白),多余字符交给校验/提交时处理
contactName: String(value).slice(0, idx).trim(),
- contactPhone: String(value).slice(idx + 1).trim(),
+ contactPhone: String(value)
+ .slice(idx + 1)
+ .trim(),
};
}
// 无分隔符:整体作为联系人姓名,电话置空(由校验拦截)
@@ -76,7 +78,9 @@ function OrgInfoPage(props) {
setDetail(res.data);
let attachmentUrls = res.data.attachmentUrls;
if (typeof attachmentUrls === "string" && attachmentUrls) {
- try { attachmentUrls = JSON.parse(attachmentUrls); } catch {}
+ try {
+ attachmentUrls = JSON.parse(attachmentUrls);
+ } catch {}
}
form.setFieldsValue({
...res.data,
@@ -166,7 +170,7 @@ function OrgInfoPage(props) {
};
return (
)
}
+ footer={
+ editing && (
+
+
+ {!hasExistingData && (
+
+ )}
+
+
+ )
+ }
>
-
-
-
);
}
diff --git a/src/pages/Container/QualificationReview/QualReviewForm/ReviewModal.js b/src/pages/Container/QualificationReview/QualReviewForm/ReviewModal.js
index 506754d..b54ef70 100644
--- a/src/pages/Container/QualificationReview/QualReviewForm/ReviewModal.js
+++ b/src/pages/Container/QualificationReview/QualReviewForm/ReviewModal.js
@@ -170,7 +170,7 @@ const ReviewModal = (props) => {
footer={
- {reviewResult !== 3 && (
+ {reviewResult !== 2 && reviewResult !== 3 && (
@@ -244,79 +244,61 @@ const ReviewModal = (props) => {
style={{ marginTop: "7px" }}
scrollToFirstError
>
- {/* 专家核验场景:审核结果 + 核验意见(2026-08-14 补充审核结果选项) */}
+
+
+
+
+ {/* 2026-08-14 指派专家:仅资质备案初审显示(非变更、非专家核验,原型 modal-review-action) */}
+ {!isChangeScene && !isExpert && (
+
+
+
+ )}
+
{isExpert ? (
- <>
-
-
-
-
-
-
- >
+
+
+
) : (
- <>
-
-
-
-
- {/* 2026-08-14 指派专家:仅资质备案初审显示(原型 modal-review-action),备案变更/专家核验不显示 */}
- {!isChangeScene && (
-
-
-
- )}
-
-
-
-
- >
+
+
+
)}