|
|
@@ -32,6 +32,8 @@ import { |
|
|
|
// useEffect, |
|
|
|
useState |
|
|
|
} from "react"; |
|
|
|
import {PNSPS_BUTTON_THEME, PNSPS_LONG_BUTTON_THEME} from "../../../themes/buttonConst"; |
|
|
|
import {ThemeProvider} from "@emotion/react"; |
|
|
|
// ==============================|| DASHBOARD - DEFAULT ||============================== // |
|
|
|
|
|
|
|
const Index = () => { |
|
|
@@ -90,11 +92,11 @@ const Index = () => { |
|
|
|
<Grid container justifyContent="flex-start" alignItems="center" > |
|
|
|
<center> |
|
|
|
<Grid item xs={12} md={8} > |
|
|
|
<Typography variant="h2" sx={{ textAlign: "left", ml: 4, mr: 4, mt: 4, borderBottom: "1px solid black" }}> |
|
|
|
<Typography variant="h3" sx={{ textAlign: "left", ml: 4, mr: 4, mt: 4, borderBottom: "1px solid black" }}> |
|
|
|
公共啟事:校對完成及付款 |
|
|
|
</Typography> |
|
|
|
|
|
|
|
<Typography variant="h3" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}> |
|
|
|
<Typography variant="h4" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}> |
|
|
|
我們已收到申請編號: {record?.appNo} 的稿件校對確定及可付印的指示。 |
|
|
|
<br /><br /> |
|
|
|
請於 <span style={{ color: "red" }}>{DateUtils.dateStr_Cht(record?.returnBeforeDate)} 下午 2:00 前</span> 完成繳費,我們將於收到繳費確認後處理刊出事宜。 |
|
|
@@ -102,27 +104,37 @@ const Index = () => { |
|
|
|
如你在憲報期數 {record?.issueYear} 年 {record?.issueVolume} 卷, 第 {record?.issueNo} 期內有多於一個公共啟事的申請,你可選擇完成所有此期所有稿件校對確定後,於繳費期限前在「我的公共啟事」內合併付款。 |
|
|
|
</Typography> |
|
|
|
|
|
|
|
<Typography variant="h3" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}> |
|
|
|
<Typography variant="h4" sx={{ ml: 8, mt: 4, mr: 8, textAlign: "left" }}> |
|
|
|
請按以下完成繳費: |
|
|
|
<Button |
|
|
|
component="span" |
|
|
|
variant="contained" |
|
|
|
size="large" |
|
|
|
sx={{ m: 4}} |
|
|
|
onClick={() => { setIsPopUp(true) }} |
|
|
|
><Typography variant="h5">即時網上繳費</Typography></Button> |
|
|
|
</Typography> |
|
|
|
|
|
|
|
<Typography variant="h4" sx={{ml:8, textAlign: "left" }}> |
|
|
|
<ThemeProvider theme={PNSPS_LONG_BUTTON_THEME}> |
|
|
|
<Button |
|
|
|
component="span" |
|
|
|
variant="contained" |
|
|
|
sx={{ ml: {md:4,lg:4}, mr:4}} |
|
|
|
onClick={() => { setIsPopUp(true) }} |
|
|
|
> |
|
|
|
即時網上繳費 |
|
|
|
</Button> |
|
|
|
</ThemeProvider> |
|
|
|
|
|
|
|
或 |
|
|
|
|
|
|
|
<Button |
|
|
|
component="span" |
|
|
|
variant="contained" |
|
|
|
size="large" |
|
|
|
sx={{ m: 4}} |
|
|
|
onClick={()=>{ |
|
|
|
navigate("/publicNotice"); |
|
|
|
}} |
|
|
|
><Typography variant="h5">稍後繳費 - 返回「我的公共啟事」</Typography></Button> |
|
|
|
<ThemeProvider theme={PNSPS_BUTTON_THEME}> |
|
|
|
<Button |
|
|
|
component="span" |
|
|
|
variant="contained" |
|
|
|
sx={{ ml: {sm:4, md:4, lg:4}, mr: 4, mt:{xs:2,sm:2}, mb:{xs:2, sm:2}}} |
|
|
|
onClick={()=>{ |
|
|
|
navigate("/publicNotice"); |
|
|
|
}} |
|
|
|
> |
|
|
|
稍後繳費 |
|
|
|
</Button> |
|
|
|
(返回「我的公共啟事」) |
|
|
|
</ThemeProvider> |
|
|
|
</Typography> |
|
|
|
</Grid> |
|
|
|
</center> |
|
|
|