| @@ -156,11 +156,11 @@ const PublicNoticeApplyForm = ({loadedData, selections}) => { | |||
| </Grid> | |||
| <Grid item xs={12} lg={12}> | |||
| <Grid container alignItems={"center"}> | |||
| <Grid item xs={12} lg={4} | |||
| <Grid item xs={12} md={3} lg={3} | |||
| sx={{display: 'flex', alignItems: 'center'}}> | |||
| 目標期數: | |||
| </Grid> | |||
| <Grid item xs={12} lg={6}> | |||
| <Grid item xs={12} md={6} lg={6}> | |||
| <RadioGroup | |||
| aria-labelledby="demo-radio-buttons-group-label" | |||
| id="issueId" | |||
| @@ -176,11 +176,11 @@ const PublicNoticeApplyForm = ({loadedData, selections}) => { | |||
| </Grid> | |||
| <Grid item xs={12} md={12} lg={12}> | |||
| <Grid container direction="row" justifyContent="flex-start" alignItems="center"> | |||
| <Grid item xs={12} lg={4} | |||
| <Grid item xs={12} md={3} lg={3} | |||
| sx={{display: 'flex', alignItems: 'center'}}> | |||
| 稿件檔案 ({"檔案大小應<10MB"}): | |||
| </Grid> | |||
| <Grid item xs={12} lg={3}> | |||
| <Grid item xs={12} md={3} lg={3}> | |||
| <input | |||
| id="uploadFileBtn" | |||
| name="file" | |||
| @@ -191,16 +191,17 @@ const PublicNoticeApplyForm = ({loadedData, selections}) => { | |||
| readFile(event) | |||
| }} | |||
| /> | |||
| <label htmlFor="uploadFileBtn"> | |||
| {attachment.name} | |||
| </Grid> | |||
| <Grid item xs={12} md={3} lg={3}> | |||
| <label htmlFor="uploadFileBtn"> | |||
| <Button | |||
| component="span" | |||
| variant="outlined" | |||
| size="large" | |||
| >{attachment?"上傳檔案":"重新上傳"}</Button> | |||
| </label> | |||
| </Grid> | |||
| <Grid item xs={12} lg={4}> | |||
| {attachment.name} | |||
| </Grid> | |||
| </Grid> | |||
| </Grid> | |||