From f312c93d1886b599b37889d226691476145c0c23 Mon Sep 17 00:00:00 2001 From: 林致杰 <1003392067@qq.com> Date: 星期二, 25 四月 2023 00:39:12 +0800 Subject: [PATCH] CIAQ报告预览支持 --- src/router.js | 48 ++++++++++++++++++++++++++++++++++++------------ 1 files changed, 36 insertions(+), 12 deletions(-) diff --git a/src/router.js b/src/router.js index 7d65a90..6c7ed8a 100644 --- a/src/router.js +++ b/src/router.js @@ -119,18 +119,42 @@ } ] }, - { - 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: '/pdf', + component: Layout, + children: [ + { + path: 'view', + component: () => import('@/views/pdf/h5'), + name: 'h5', + meta: { title: 'pdf棰勮' } + } + ] + } ] }) -- Gitblit v1.9.1