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,