From 7f4105bc2f1d4f8562e1cb9776ce49f8be0c98d2 Mon Sep 17 00:00:00 2001 From: yj <2077506045@qq.com> Date: 星期二, 03 十二月 2024 13:46:37 +0800 Subject: [PATCH] 更新CAQ优化,适配低分辨率设备 --- src/router.js | 72 ++++++++++++++++++++++++++++++------ 1 files changed, 60 insertions(+), 12 deletions(-) diff --git a/src/router.js b/src/router.js index 7d65a90..e6e59b7 100644 --- a/src/router.js +++ b/src/router.js @@ -32,6 +32,12 @@ component: () => import('@/views/demography/langOption'), name: 'langOption', meta: { title: 'langOption' } + }, + { + path: 'logo', + component: () => import('@/views/demography/logo'), + name: 'logo', + meta: { title: 'logo' } } ] }, @@ -119,18 +125,60 @@ } ] }, - { - path: '/exam', - component: Layout, - children: [ - { - path: 'values', - component: () => import('@/views/exam/paper/values'), - name: 'ExamPaperValues', - meta: { title: 'values' } - } - ] - } + { + path: '/exam', + component: Layout, + children: [ + { + path: 'values', + component: () => import('@/views/exam/paper/values'), + name: 'ExamPaperValues', + meta: { title: 'values' } + } + ] + }, + { + path: '/exam', + component: Layout, + children: [ + { + path: 'career_interests', + component: () => import('@/views/exam/paper/career_interests'), + name: 'ExamPaperCareerInterests', + meta: { title: 'career_interests' } + } + ] + }, + { + path: '/exam', + component: Layout, + children: [ + { + path: 'exercise', + component: () => import('@/views/exam/paper/exercise'), + name: 'ExamPaperExercise', + meta: { title: 'exercise' } + } + ] + }, + { + path: '/report', + component: Layout, + children: [ + { + path: 'view', + component: () => import('@/views/report/reportView'), + name: 'reportView', + meta: { title: 'PDF鎶ュ憡' } + } + ] + }, + { + path: '/report/h5', + component: () => import('@/views/report/reportH5'), + name: 'reportH5', + meta: { title: '涓汉鍙嶉鎶ュ憡' } + } ] }) -- Gitblit v1.9.1