fix
parent
5e55b0b63a
commit
35aaacbb8d
|
|
@ -363,6 +363,8 @@ function OrgInfoPage(props) {
|
||||||
style={{ width: "100%" }}
|
style={{ width: "100%" }}
|
||||||
min={0}
|
min={0}
|
||||||
precision={4}
|
precision={4}
|
||||||
|
max={99999999999}
|
||||||
|
allowClear
|
||||||
placeholder="请输入固定资产总值"
|
placeholder="请输入固定资产总值"
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|
|
||||||
|
|
@ -291,7 +291,7 @@ const SurveyContent = ({ readOnly, ...props }) => {
|
||||||
}
|
}
|
||||||
if(!validateSurveyStep()) return;
|
if(!validateSurveyStep()) return;
|
||||||
const payload = [];
|
const payload = [];
|
||||||
for (const s of STAGES) {
|
for (const s of STAGES.slice(0, 3)) {
|
||||||
const fileList = values[s.key] || [];
|
const fileList = values[s.key] || [];
|
||||||
const validFiles = fileList.filter((f) => f.status === "done" && f.url);
|
const validFiles = fileList.filter((f) => f.status === "done" && f.url);
|
||||||
if (validFiles.length === 0) {
|
if (validFiles.length === 0) {
|
||||||
|
|
@ -299,6 +299,9 @@ const SurveyContent = ({ readOnly, ...props }) => {
|
||||||
message.warning(`请先在"${s.label}"步骤上传附件`);
|
message.warning(`请先在"${s.label}"步骤上传附件`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
for (const s of STAGES) {
|
||||||
|
const fileList = values[s.key] || [];
|
||||||
payload.push({
|
payload.push({
|
||||||
projectId,
|
projectId,
|
||||||
attachTypeCode: s.key,
|
attachTypeCode: s.key,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue