From 2a177a25321e231bb86c88704feb94f4a7130780 Mon Sep 17 00:00:00 2001 From: yj <2077506045@qq.com> Date: 星期四, 11 四月 2024 17:27:52 +0800 Subject: [PATCH] 优化LAQ、CIAQ、MAQ、API、JAQ产品的答题逻辑,防止客户误操作导致的流程卡点。 --- src/router.js | 30 +++++++++++++++++++++++++++--- 1 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/router.js b/src/router.js index 958c913..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' } } ] }, @@ -144,16 +150,34 @@ ] }, { - path: '/pdf', + 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/pdf/reportView'), + component: () => import('@/views/report/reportView'), name: 'reportView', - meta: { title: '鎶ュ憡棰勮' } + meta: { title: 'PDF鎶ュ憡' } } ] + }, + { + path: '/report/h5', + component: () => import('@/views/report/reportH5'), + name: 'reportH5', + meta: { title: '涓汉鍙嶉鎶ュ憡' } } ] }) -- Gitblit v1.9.1