From 35aaacbb8dbaf667d01e9bb21fe9bf2cf31b6663 Mon Sep 17 00:00:00 2001 From: tangjie <122778500@qq.com> Date: Thu, 13 Aug 2026 15:43:53 +0800 Subject: [PATCH] fix --- src/pages/Container/EnterpriseInfo/OrgInfo/index.js | 2 ++ .../SafetyEvalBusiness/ProjectFlow/SurveyContent.js | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pages/Container/EnterpriseInfo/OrgInfo/index.js b/src/pages/Container/EnterpriseInfo/OrgInfo/index.js index 6808b4b..55dd573 100644 --- a/src/pages/Container/EnterpriseInfo/OrgInfo/index.js +++ b/src/pages/Container/EnterpriseInfo/OrgInfo/index.js @@ -363,6 +363,8 @@ function OrgInfoPage(props) { style={{ width: "100%" }} min={0} precision={4} + max={99999999999} + allowClear placeholder="请输入固定资产总值" /> diff --git a/src/pages/Container/SafetyEvalBusiness/ProjectFlow/SurveyContent.js b/src/pages/Container/SafetyEvalBusiness/ProjectFlow/SurveyContent.js index b752711..13194d9 100644 --- a/src/pages/Container/SafetyEvalBusiness/ProjectFlow/SurveyContent.js +++ b/src/pages/Container/SafetyEvalBusiness/ProjectFlow/SurveyContent.js @@ -291,7 +291,7 @@ const SurveyContent = ({ readOnly, ...props }) => { } if(!validateSurveyStep()) return; const payload = []; - for (const s of STAGES) { + for (const s of STAGES.slice(0, 3)) { const fileList = values[s.key] || []; const validFiles = fileList.filter((f) => f.status === "done" && f.url); if (validFiles.length === 0) { @@ -299,6 +299,9 @@ const SurveyContent = ({ readOnly, ...props }) => { message.warning(`请先在"${s.label}"步骤上传附件`); return; } + } + for (const s of STAGES) { + const fileList = values[s.key] || []; payload.push({ projectId, attachTypeCode: s.key,