From a54260ede6eb435a2f3c59cd53e89abff5a47c62 Mon Sep 17 00:00:00 2001 From: Coldsmiles Date: Sun, 22 Mar 2026 02:53:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B7=AF=E7=94=B1=E5=8F=8A=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=20iframe=20=E9=A1=B5=E9=9D=A2=E7=9A=84=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- src/router.js | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 05304f0..d87237e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -23,7 +23,7 @@ const activePath = computed(() => route.path); // iframe pages don't show footer; they fill the viewport const isIframePage = computed(() => - ['/doc', '/map', '/photo'].includes(route.path) + ['/doc', '/map', '/status', '/photo'].includes(route.path) ); diff --git a/src/router.js b/src/router.js index ed44662..0a3d482 100644 --- a/src/router.js +++ b/src/router.js @@ -58,6 +58,13 @@ export const routes = [ component: () => import('./pages/DocPage.vue'), meta: { seo: routeSeo.doc }, }, + { + path: '/status', + alias: ['/status.html'], + name: 'status', + component: () => import('./pages/StatusPage.vue'), + meta: { seo: routeSeo.status }, + }, { path: '/map', alias: ['/map.html'],