dev-tmp1
tangjie 2026-08-13 15:43:53 +08:00
parent 5e55b0b63a
commit 35aaacbb8d
2 changed files with 6 additions and 1 deletions

View File

@ -363,6 +363,8 @@ function OrgInfoPage(props) {
style={{ width: "100%" }}
min={0}
precision={4}
max={99999999999}
allowClear
placeholder="请输入固定资产总值"
/>
</Form.Item>

View File

@ -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,