监控页新增 7 个国内城市(上海/北京/成都等,NMC 5min数据)

This commit is contained in:
2569718930@qq.com
2026-05-14 01:37:37 +08:00
parent 6eca1da3f9
commit 329e3afe38
@@ -7,6 +7,7 @@ import type { CityDetail } from "@/lib/dashboard-types";
const MONITOR_KEYS = [ const MONITOR_KEYS = [
"seoul", "busan", "tokyo", "ankara", "helsinki", "amsterdam", "seoul", "busan", "tokyo", "ankara", "helsinki", "amsterdam",
"istanbul", "paris", "hong kong", "lau fau shan", "taipei", "istanbul", "paris", "hong kong", "lau fau shan", "taipei",
"shanghai", "beijing", "chengdu", "chongqing", "wuhan", "guangzhou", "qingdao",
"new york", "los angeles", "chicago", "denver", "atlanta", "new york", "los angeles", "chicago", "denver", "atlanta",
"miami", "san francisco", "houston", "dallas", "austin", "seattle", "miami", "san francisco", "houston", "dallas", "austin", "seattle",
] as const; ] as const;
@@ -127,6 +128,9 @@ export default function MonitorPanel() {
denver: "Buckley", atlanta: "Hartsfield", miami: "MIA", denver: "Buckley", atlanta: "Hartsfield", miami: "MIA",
"san francisco": "SFO", houston: "Hobby", dallas: "Love Field", "san francisco": "SFO", houston: "Hobby", dallas: "Love Field",
austin: "Bergstrom", seattle: "SeaTac", austin: "Bergstrom", seattle: "SeaTac",
shanghai: "Pudong", beijing: "Capital",
chengdu: "Shuangliu", chongqing: "Jiangbei",
wuhan: "Tianhe", guangzhou: "Baiyun", qingdao: "Liuting",
}; };
return m[key] || ""; return m[key] || "";
}; };