Jason Chuang пре 2 недеља
родитељ
комит
70ea25cce2
2 измењених фајлова са 4 додато и 4 уклоњено
  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 Прегледај датотеку

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


+ 2
- 2
src/pages/authentication/auth-forms/CustomFormWizard.js Прегледај датотеку

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


Loading…
Откажи
Сачувај