Sfoglia il codice sorgente

fix MUI

web_access_fix
Jason Chuang 2 settimane fa
parent
commit
70ea25cce2
2 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. +2
    -2
      src/pages/authentication/auth-forms/BusCustomFormWizard.js
  2. +2
    -2
      src/pages/authentication/auth-forms/CustomFormWizard.js

+ 2
- 2
src/pages/authentication/auth-forms/BusCustomFormWizard.js Vedi File

@@ -1539,7 +1539,7 @@ const BusCustomFormWizard = (props) => {
</ThemeProvider>
{/* <Typography display="inline" variant="h6" sx={{ fontSize: 12, color: 'primary.primary'}}></Typography> */}
</Stack>
{fileList != null ?
{fileList != null && props.step === 0 ?
<UploadFileTable key="uploadTable" recordList={fileListData} setUpdateRows={setUpdateRows} /> : null}
{/* <Stack mt={1} direction="row" justifyContent="flex-start" alignItems="center" spacing={2}>
<Button variant="contained" type="submit" sx={{ fontSize: 12,height:'25px'}}>Submit</Button>
@@ -1861,7 +1861,7 @@ const BusCustomFormWizard = (props) => {
<Typography display="inline" variant="h4" sx={{ color: 'primary.primary' }}>
<FormattedMessage id="userIdDoc"/>
</Typography>
{fileList != null ?
{fileList != null && props.step === 1 ?
<PreviewUploadFileTable key="previewTable" recordList={fileListData} /> : null}
</Stack>
</Grid>


+ 2
- 2
src/pages/authentication/auth-forms/CustomFormWizard.js Vedi File

@@ -1868,7 +1868,7 @@ const CustomFormWizard = (props) => {
</ThemeProvider>
{/*<Typography xs={12} sm={9} md={3} display="inline" variant="subtitle1" sx={{ color: 'primary.primary' }}>如: 香港身份證; 護照; 中國內地身份證等</Typography>*/}
</Stack>
{fileList != null ?
{fileList != null && props.step === 0 ?
<UploadFileTable key="uploadTable" recordList={fileListData} setUpdateRows={setUpdateRows} /> : null}
{/* <Stack mt={1} direction="row" justifyContent="flex-start" alignItems="center" spacing={2}>
<Button variant="contained" type="submit" sx={{ fontSize: 12,height:'25px'}}>Submit</Button>
@@ -2197,7 +2197,7 @@ const CustomFormWizard = (props) => {
<Typography display="inline" variant="h4" sx={{ color: 'primary.primary' }}>
<FormattedMessage id="userIdDoc" />
</Typography>
{fileList != null ?
{fileList != null && props.step === 1 ?
<PreviewUploadFileTable key="previewTable" recordList={fileListData} /> : null}
</Stack>
</Grid>


Caricamento…
Annulla
Salva