|
|
@@ -1,6 +1,6 @@ |
|
|
|
// material-ui |
|
|
|
import { |
|
|
|
Grid, |
|
|
|
Grid, Box |
|
|
|
} from '@mui/material'; |
|
|
|
import MainCard from "components/MainCard"; |
|
|
|
import * as UrlUtils from "utils/ApiPathConst"; |
|
|
@@ -44,7 +44,7 @@ const Index = () => { |
|
|
|
responseData.data["faxNumber"] = JSON.parse(responseData.data.contactFaxNo).faxNumber; |
|
|
|
responseData.data["fax_countryCode"] = JSON.parse(responseData.data.contactFaxNo).countryCode; |
|
|
|
|
|
|
|
responseData.data["issueNoStr"] = responseData.data.issueVolume+"/"+responseData.data.issueYear+" No. "+responseData.data.issueNo |
|
|
|
responseData.data["issueNoStr"] = responseData.data.issueVolume + "/" + responseData.data.issueYear + " No. " + responseData.data.issueNo |
|
|
|
responseData.data["issueDate"] = DateUtils.dateStr(responseData.data.issueDate); |
|
|
|
|
|
|
|
responseData.data["groupType"] = responseData.data.groupNo.charAt(0); |
|
|
@@ -58,44 +58,59 @@ const Index = () => { |
|
|
|
!onReady ? |
|
|
|
<LoadingComponent /> |
|
|
|
: |
|
|
|
|
|
|
|
<Grid container sx={{ minHeight: '85vh', backgroundColor: '#eee' }} direction="column" spacing={1} > |
|
|
|
{/*row 1*/} |
|
|
|
<Grid item xs={12} md={12} lg={12}> |
|
|
|
<Grid container direction="row" justify="flex-start" alignItems="stretch" spacing={1}> |
|
|
|
<Grid item xs={12} md={12} lg={8}> |
|
|
|
<ApplicationDetails |
|
|
|
formData={record} |
|
|
|
style={{ |
|
|
|
display: "flex", |
|
|
|
height: "100%", |
|
|
|
flex: 1 |
|
|
|
}} |
|
|
|
/> |
|
|
|
<MainCard |
|
|
|
elevation={0} |
|
|
|
border={false} |
|
|
|
content={false}> |
|
|
|
{/*row 1*/} |
|
|
|
<Grid item xs={12} md={12} lg={12}> |
|
|
|
<Grid container direction="row" justify="flex-start" alignItems="stretch" spacing={1}> |
|
|
|
<Grid item xs={12} md={12} lg={8}> |
|
|
|
<Box xs={12} ml={4} mt={3} sx={{ p: 1, border: '3px groove grey', borderRadius: '10px' }}> |
|
|
|
<ApplicationDetails |
|
|
|
formData={record} |
|
|
|
style={{ |
|
|
|
display: "flex", |
|
|
|
height: "100%", |
|
|
|
flex: 1 |
|
|
|
}} |
|
|
|
/> |
|
|
|
</Box> |
|
|
|
</Grid> |
|
|
|
<Grid item xs={12} md={12} lg={4} > |
|
|
|
<Box xs={12} ml={4} mt={3} sx={{ p: 1, border: '3px groove grey', borderRadius: '10px' }}> |
|
|
|
<GazetteDetails |
|
|
|
formData={record} |
|
|
|
style={{ |
|
|
|
display: "flex", |
|
|
|
height: "100%", |
|
|
|
flex: 1 |
|
|
|
}} |
|
|
|
/> |
|
|
|
</Box> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|
<Grid item xs={12} md={12} lg={4} > |
|
|
|
<GazetteDetails |
|
|
|
</Grid> |
|
|
|
{/*row 2*/} |
|
|
|
<Grid item xs={12} md={12} lg={12}> |
|
|
|
<MainCard elevation={0} |
|
|
|
border={false} |
|
|
|
content={false} |
|
|
|
> |
|
|
|
<Box xs={12} ml={4} mt={3} sx={{ p: 1, border: '3px groove grey', borderRadius: '10px' }}> |
|
|
|
|
|
|
|
<ProofForm |
|
|
|
formData={record} |
|
|
|
style={{ |
|
|
|
display: "flex", |
|
|
|
height: "100%", |
|
|
|
flex: 1 |
|
|
|
}} |
|
|
|
/> |
|
|
|
</Grid> |
|
|
|
</Box> |
|
|
|
<br/> |
|
|
|
</MainCard> |
|
|
|
</Grid> |
|
|
|
</Grid> |
|
|
|
{/*row 2*/} |
|
|
|
<Grid item xs={12} md={12} lg={12}> |
|
|
|
<MainCard elevation={0} |
|
|
|
border={false} |
|
|
|
content={false} |
|
|
|
> |
|
|
|
<ProofForm |
|
|
|
formData={record} |
|
|
|
/> |
|
|
|
</MainCard> |
|
|
|
</Grid> |
|
|
|
</MainCard> |
|
|
|
</Grid> |
|
|
|
|
|
|
|
); |
|
|
|
}; |
|
|
|
|
|
|
|