Merge remote-tracking branch 'origin/master'

master
LiuJiaNan 2026-03-02 15:38:27 +08:00
commit 6ea0adb4ea
1 changed files with 6 additions and 5 deletions

View File

@ -127,16 +127,17 @@ const StepOneComponent = (props) => {
}; };
useEffect(() => { useEffect(() => {
getCorpInfoList(1,0); getCorpInfoList(1, 0);
form.setFieldsValue(props.formValues); form.setFieldsValue(props.formValues);
}, []); }, []);
useEffect(() => { useEffect(() => {
if (qualificationsTypeId && stakeholderLevel) { if (qualificationsTypeId && stakeholderLevel) {
if (stakeholderLevel === 'two-level') { if (stakeholderLevel === "two-level") {
getCorpInfoList(1,1); getCorpInfoList(1, 1);
}else { }
getCorpInfoList(1,0); else {
getCorpInfoList(1, 0);
} }
getQualificationsListAll(); getQualificationsListAll();
} }