From 592c1750b148874737cdfba4b22b6229f9805fe6 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期三, 02 七月 2025 14:55:27 +0800 Subject: [PATCH] 新增 --- src/router/index.js | 67 +++++++++++++++++++++++++++++---- 1 files changed, 58 insertions(+), 9 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 54821e2..a0f8956 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -53,19 +53,68 @@ hidden: true }, { - path: '/fillForm', - component: () => import('@/views/safetyReview/expertManage/fillForm/index.vue'), - hidden: true + path: '/chapters', + component: Layout, + redirect: '/chapters', + children: [ + { + path: '/chapters', + component: () => import('@/views/work/onlineEducation/courseManage/courseChapters/index.vue'), + name: 'Chapters', + + } + ] }, { - path: '/certPdf', - component: () => import('@/views/certificatePdf'), - hidden: true + path: '/chooseStu', + component: Layout, + redirect: '/chooseStu', + children: [ + { + path: '/chooseStu', + component: () => import('@/views/work/onlineEducation/classHourBatch/components/handleStudent.vue'), + name: 'ChooseStu', + + } + ] }, { - path: '/checkProgress', - component: () => import('@/views/safetyReview/expertManage/checkProgress/index.vue'), - hidden: true + path: '/examStu', + component: Layout, + redirect: '/examStu', + children: [ + { + path: '/examStu', + component: () => import('@/views/work/onlineEducation/groupExams/components/student.vue'), + name: 'ExamStu', + + } + ] + }, + { + path: '/correctExam', + component: Layout, + redirect: '/correctExam', + children: [ + { + path: '/correctExam', + component: () => import('@/views/work/onlineEducation/groupExams/components/correctExam.vue'), + name: 'CorrectExam', + + } + ] + }, + { + path: '/newPage', + component: Layout, + redirect: '/newPage', + children: [ + { + path: '/newPage', + component: () => import('@/views/work/onlineEducation/systemManage/banner/components/newPage.vue'), + name: 'NewPage', + } + ] }, { path: '', -- Gitblit v1.9.2