From fdbca9e9ddaadb8d7d6201673d2f235a46d72f66 Mon Sep 17 00:00:00 2001 From: "gary_chen\\gary_chen" Date: Fri, 17 Nov 2023 09:37:23 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=B5=B1=20wms=20=E5=8F=8A=20app=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=B6=AD=E8=AD=B7=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/include-header.php | 17 ++-- app/maintenance.php | 77 +++++++++++++++++ wms/header.php | 8 ++ wms/login.php | 182 +++++++++++++++++++++-------------------- wms/maintenance.php | 77 +++++++++++++++++ 5 files changed, 268 insertions(+), 93 deletions(-) create mode 100644 app/maintenance.php create mode 100644 wms/maintenance.php diff --git a/app/include-header.php b/app/include-header.php index a1487220..bada2097 100644 --- a/app/include-header.php +++ b/app/include-header.php @@ -1,12 +1,19 @@ - +displayPage(); +?> + + - + Masada維保 - @@ -14,6 +21,6 @@ - + \ No newline at end of file diff --git a/app/maintenance.php b/app/maintenance.php new file mode 100644 index 00000000..4498d257 --- /dev/null +++ b/app/maintenance.php @@ -0,0 +1,77 @@ + + + + + + 維護中 + + + + + maintenancePeriod = $maintenancePeriod; + } + + public function displayPage() + { + echo '
'; + echo '

MASADA

'; + echo '

系統維護中

'; + echo '

維護時段:' . $this->maintenancePeriod . '

'; + echo '
'; + exit; + } + } + + ?> + + + \ No newline at end of file diff --git a/wms/header.php b/wms/header.php index 7d7ff253..569ebda1 100644 --- a/wms/header.php +++ b/wms/header.php @@ -1,5 +1,13 @@ displayPage(); + + require_once dirname(__FILE__) . "/../mkt/database.php"; include "fun_global.php"; if (isset($_REQUEST["function_name"])) { diff --git a/wms/login.php b/wms/login.php index 94418063..60adcba2 100644 --- a/wms/login.php +++ b/wms/login.php @@ -1,9 +1,17 @@ +displayPage(); +?> + - + @@ -20,125 +28,123 @@ + - + -
- -
登入管理系統
- -
- - - -
- -
- - -
-
- - - - - - -
-
- - - - -
-
-
-
- - - - +
+ + + +
+ +
+ + +
+
+ + + + + + +
+
+ + + + +
+
+
+
+ + + + +
+
+ +
+ +
+
-
+ -
-
-
-
-
+ -
- - - -
- - icon
- +
+ + icon
+ - -
Masada電梯,聰明的就懂!
- + +
Masada電梯,聰明的就懂!
-
- - + - - - - + \ No newline at end of file diff --git a/wms/maintenance.php b/wms/maintenance.php new file mode 100644 index 00000000..4498d257 --- /dev/null +++ b/wms/maintenance.php @@ -0,0 +1,77 @@ + + + + + + 維護中 + + + + + maintenancePeriod = $maintenancePeriod; + } + + public function displayPage() + { + echo '
'; + echo '

MASADA

'; + echo '

系統維護中

'; + echo '

維護時段:' . $this->maintenancePeriod . '

'; + echo '
'; + exit; + } + } + + ?> + + + \ No newline at end of file