- |
+ |
+ {checkPaymentSuspension() && (
+
+
+
+ )}
{
setWarningTitle(intl.formatMessage({ id: "paymentMeans" }) + ": " + intl.formatMessage({ id: "payOnline" }))
setWarningText(
@@ -388,8 +409,8 @@ const PublicNoticeApplyForm = ({ loadedData, _selections, gazetteIssueList }) =>
setIsWarningPopUp(true);
}}>
|
- {DateUtils.dateFormat(closeDate, dft)} {locale==='en'?"2:00 p.m.":"下午2時"} |
-
+ | {DateUtils.dateFormat(closeDate, dft)} {locale==='en'?"2:00 p.m.":"下午2時"} |
+
diff --git a/src/pages/extra-pages/UserMenu1/index.js b/src/pages/extra-pages/UserMenu1/index.js
new file mode 100644
index 0000000..b6ea85c
--- /dev/null
+++ b/src/pages/extra-pages/UserMenu1/index.js
@@ -0,0 +1,178 @@
+import { Grid, Typography, Stack, } from '@mui/material';
+import { useState, useEffect, lazy } from "react";
+
+import Loadable from 'components/Loadable';
+import { useIntl, FormattedMessage } from "react-intl";
+
+import titleBackgroundImg from 'assets/images/dashboard/gazette-bar.png'
+const BackgroundHead = {
+ backgroundImage: `url(${titleBackgroundImg})`,
+ width: 'auto',
+ height: 'auto',
+ backgroundSize: 'contain',
+ backgroundRepeat: 'no-repeat',
+ backgroundColor: '#0C489E',
+ backgroundPosition: 'right'
+}
+
+const LoadingComponent = Loadable(lazy(() => import('pages/extra-pages/LoadingComponent')));
+
+import DownloadIcon from '@mui/icons-material/Download';
+
+const UserMenu1 = () => {
+ const intl = useIntl();
+ const { locale } = intl;
+ const [onReady, setOnReady] = useState(false);
+
+ const pnspsurl = "https://"+window.location.hostname;
+
+ useEffect(() => {
+ setOnReady(true);
+ }, [locale]);
+
+ const tableStyle = {
+ fontFamily: "arial, sans-serif",
+ borderCollapse: "collapse",
+ width: "100%",
+ }
+
+ const cellStyle = {
+ border: "1px solid #dddddd",
+ textAlign: "left",
+ padding: "8px"
+ };
+
+ const getRow = ({ title, en, zh, cn }) => {
+ return <>
+ |