From c84ee16e8af4b2b6e588ae09543471cae201944a Mon Sep 17 00:00:00 2001 From: liangweihao <734499798@qq.com> Date: Mon, 21 Jul 2025 21:45:25 +0800 Subject: [PATCH] fix --- frontend/src/router/index.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts index 0c7010e..d8ada0f 100644 --- a/frontend/src/router/index.ts +++ b/frontend/src/router/index.ts @@ -52,12 +52,6 @@ const routes: RouteRecordRaw[] = [ component: () => import('@/views/AdminMonitor.vue'), meta: { title: '系统监控', requiresAdminAuth: true } }, - { - path: '/test', - name: 'Test', - component: () => import('@/views/Test.vue'), - meta: { title: 'API测试' } - }, { path: '/:pathMatch(.*)*', name: 'NotFound', @@ -79,7 +73,7 @@ router.beforeEach(async ( ) => { // 设置页面标题 const title = to.meta.title as string - document.title = `${title} - Pandora` + document.title = `${title} - AI` // 检查是否需要用户认证 if (to.meta.requiresAuth) {