From b8cc5e3b4e486a3ae3d9a1377b2667f7ccce5afe Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Fri, 21 Nov 2025 11:50:22 +0800 Subject: [PATCH] =?UTF-8?q?chore(=E5=85=A5=E5=8F=A3=E9=A1=B5=E9=9D=A2):=20?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=96=87=E4=BB=B6=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 8 +-- src/views/{ => LandingPage}/AboutView.vue | 0 src/views/{ => LandingPage}/LoadingView.vue | 73 ++++++++++++++------- src/views/{ => LandingPage}/NotAppView.vue | 0 4 files changed, 52 insertions(+), 29 deletions(-) rename src/views/{ => LandingPage}/AboutView.vue (100%) rename src/views/{ => LandingPage}/LoadingView.vue (90%) rename src/views/{ => LandingPage}/NotAppView.vue (100%) diff --git a/src/router/index.js b/src/router/index.js index 222541d..57a46eb 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,13 +7,13 @@ const router = createRouter({ { path: '/', name: 'root', - component: () => import('../views/LoadingView.vue'), + component: () => import('../views/LandingPage/LoadingView.vue'), meta: { requiresAuth: false, isPublic: true }, }, { path: '/loading', name: 'loading', - component: () => import('../views/LoadingView.vue'), + component: () => import('../views/LandingPage/LoadingView.vue'), meta: { requiresAuth: false, isPublic: true }, }, { @@ -68,7 +68,7 @@ const router = createRouter({ { path: '/about', name: 'about', - component: () => import('../views/AboutView.vue'), + component: () => import('../views/LandingPage/AboutView.vue'), }, { path: '/host-setting', @@ -134,7 +134,7 @@ const router = createRouter({ { path: '/not_app', name: 'not-app', - component: () => import('../views/NotAppView.vue'), + component: () => import('../views/LandingPage/NotAppView.vue'), meta: { requiresAuth: false }, }, // 404 页面 diff --git a/src/views/AboutView.vue b/src/views/LandingPage/AboutView.vue similarity index 100% rename from src/views/AboutView.vue rename to src/views/LandingPage/AboutView.vue diff --git a/src/views/LoadingView.vue b/src/views/LandingPage/LoadingView.vue similarity index 90% rename from src/views/LoadingView.vue rename to src/views/LandingPage/LoadingView.vue index b74e67d..9e11628 100644 --- a/src/views/LoadingView.vue +++ b/src/views/LandingPage/LoadingView.vue @@ -47,9 +47,15 @@