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(() => {
getCorpInfoList(1,0);
getCorpInfoList(1, 0);
form.setFieldsValue(props.formValues);
}, []);
useEffect(() => {
if (qualificationsTypeId && stakeholderLevel) {
if (stakeholderLevel === 'two-level') {
getCorpInfoList(1,1);
}else {
getCorpInfoList(1,0);
if (stakeholderLevel === "two-level") {
getCorpInfoList(1, 1);
}
else {
getCorpInfoList(1, 0);
}
getQualificationsListAll();
}