From 397f5b5d8f6f15270b158a91ba3b173d00051df5 Mon Sep 17 00:00:00 2001 From: 祖安之光 <11848914+light-of-zuan@user.noreply.gitee.com> Date: 星期五, 27 六月 2025 17:00:41 +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