From ceb3c3e737af038b3b6e3d83f97b2cf936cbd105 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期五, 27 六月 2025 16:21:17 +0800 Subject: [PATCH] 修改 --- src/router/index.js | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 54821e2..6f00bf0 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -68,6 +68,70 @@ hidden: true }, { + path: '/chapters', + component: Layout, + redirect: '/chapters', + children: [ + { + path: '/chapters', + component: () => import('@/views/work/onlineEducation/courseManage/courseChapters/index.vue'), + name: 'Chapters', + + } + ] + }, + { + path: '/chooseStu', + component: Layout, + redirect: '/chooseStu', + children: [ + { + path: '/chooseStu', + component: () => import('@/views/work/onlineEducation/classHourBatch/components/handleStudent.vue'), + name: 'ChooseStu', + + } + ] + }, + { + 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: '', component: Layout, redirect: '/index', -- Gitblit v1.9.2