+
-
-
+
-
+
+
+
+ 今日活動
+
+
+
+
+
+
+ 時間 |
+ 機構 |
+ 活動名稱 |
+ 操作 |
+
+
+
+
+ {{ row.time }} |
+ {{ row.org }} |
+ {{ row.title }} |
+
+
+ |
+
+
+
+
+
+
+
+
+ 共 {{ total }} 筆,每頁 {{ pageSize }} 筆
+
+
+
+
+
+ {{ currentPage }} / {{ totalPages }}
+
+
+
+
+
+
+
+
+ 今日異常事件
+
+
+
+
+
+
+ 時間 |
+ 機構 |
+ 事件 |
+
+ 查看詳情 |
+
+
+
+
+
+ {{ row.time }} |
+ {{ row.org }} |
+ {{ row.event }} |
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+ 共 {{ incidentTotal }} 筆,每頁 {{ incidentPageSize }} 筆
+
+
+
+
+
+ {{ currentPage }} / {{ totalPages }}
+
+
+
+
+
+
+
+
+ 今日派車總表
+
+
+
+
+
+
+
+ 時間 |
+ 機構 |
+ 聯絡人 |
+ 操作 |
+
+
+
+
+
+ {{ row.time }} |
+ {{ row.org }} |
+
+ {{ row.contact }}
+ |
+
+
+ |
+
+
+
+
+
+
+
+
+
+ 共 {{ dispatchTotal }} 筆,每頁 {{ dispatchPageSize }} 筆
+
+
+
+
+
+ {{ currentPage }} / {{ totalPages }}
+
+
+
+
+
+
+
-
+
diff --git a/src/style.css b/src/style.css
index eab2a1a..e301a83 100644
--- a/src/style.css
+++ b/src/style.css
@@ -157,3 +157,10 @@ body {
overflow-x: hidden; /* 防止偶發橫向卷軸 */
font-family: "Noto Sans TC", sans-serif;
}
+
+/* 降低 Leaflet 控制層級:預設是 1000 */
+.leaflet-top,
+.leaflet-bottom {
+ z-index: 400 !important; /* 低於你的 Nav,但仍高於地圖瓦片 */
+}
+
diff --git a/src/styles/palette.js b/src/styles/palette.js
index 4668272..a44818a 100644
--- a/src/styles/palette.js
+++ b/src/styles/palette.js
@@ -3,6 +3,7 @@
export const brand = {
green: "#34D5C8",
greenLight: "#C4FBE5",
+ greenDark:"#0CA99C",
red: "#FF8678",
purple: "#A5BEFF",
purpleLight: "#D5E1FF",
@@ -10,5 +11,6 @@ export const brand = {
yellow: "#E1F391",
black: "#424242",
gray: "#828282",
- grayLight: "#F0F0F0",
+ grayLight: "#E9E9E9",
+ grayDark: "#D2D2D2",
};
diff --git a/tailwind.config.js b/tailwind.config.js
index 56a1270..e8de1c5 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -40,7 +40,7 @@ module.exports = {
},
colors: {
brand: {
- green: { DEFAULT: "#34D5C8", light: "#C4FBE5" },
+ green: { DEFAULT: "#34D5C8", light: "#C4FBE5", dark:"#0CA99C" },
red: "#FF8678",
purple: {
DEFAULT: "#A5BEFF",
@@ -53,9 +53,9 @@ module.exports = {
},
black: "#424242",
gray: {
- light: "#F0F0F0",
- deepLight:"#D2D2D2",
DEFAULT: "#828282",
+ light: "#E9E9E9",
+ dark: "#D2D2D2",
},
},
},