diff --git a/src/pages/authentication/auth-forms/BusCustomFormWizard.js b/src/pages/authentication/auth-forms/BusCustomFormWizard.js index 11279b1..5001874 100644 --- a/src/pages/authentication/auth-forms/BusCustomFormWizard.js +++ b/src/pages/authentication/auth-forms/BusCustomFormWizard.js @@ -1539,7 +1539,7 @@ const BusCustomFormWizard = (props) => { {/* */} - {fileList != null ? + {fileList != null && props.step === 0 ? : null} {/* @@ -1861,7 +1861,7 @@ const BusCustomFormWizard = (props) => { - {fileList != null ? + {fileList != null && props.step === 1 ? : null} diff --git a/src/pages/authentication/auth-forms/CustomFormWizard.js b/src/pages/authentication/auth-forms/CustomFormWizard.js index 99f18e3..46c53d8 100644 --- a/src/pages/authentication/auth-forms/CustomFormWizard.js +++ b/src/pages/authentication/auth-forms/CustomFormWizard.js @@ -1868,7 +1868,7 @@ const CustomFormWizard = (props) => { {/*如: 香港身份證; 護照; 中國內地身份證等*/} - {fileList != null ? + {fileList != null && props.step === 0 ? : null} {/* @@ -2197,7 +2197,7 @@ const CustomFormWizard = (props) => { - {fileList != null ? + {fileList != null && props.step === 1 ? : null}