From d5bd0e88c1eec6bb2947d2bfa57348d89edbc1c3 Mon Sep 17 00:00:00 2001 From: zhouwx <1175765986@qq.com> Date: 星期五, 18 七月 2025 16:20:45 +0800 Subject: [PATCH] 修改 --- src/router/index.js | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 59 insertions(+), 0 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index a0f8956..c741cdd 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -53,6 +53,64 @@ hidden: true }, { + path: '/certPdf', + component: () => import('@/views/certificatePdf'), + hidden: true + }, + { + path: '/menuPage', + component: () => import('@/views/menuPage'), + hidden: true + }, + { + path: '/courseManage', + component: Layout, + redirect: '/onlineEducation/courseManage', + children: [ + { + path: 'course', + component: () => import('@/views/work/onlineEducation/courseManage/index.vue'), + name: 'course', + } + ] + }, + { + path: '/class', + component: Layout, + redirect: '/class', + children: [ + { + path: '/class', + component: () => import('@/views/work/onlineEducation/classHourBatch/index.vue'), + name: 'class', + } + ] + }, + { + path: '/group', + component: Layout, + redirect: '/group', + children: [ + { + path: '/group', + component: () => import('@/views/work/onlineEducation/groupExams/index.vue'), + name: 'group', + } + ] + }, + { + path: '/offline', + component: Layout, + redirect: '/offline', + children: [ + { + path: '/offline', + component: () => import('@/views/work/onlineEducation/offlineEducation/index.vue'), + name: 'offline', + } + ] + }, + { path: '/chapters', component: Layout, redirect: '/chapters', @@ -104,6 +162,7 @@ } ] }, + { path: '/newPage', component: Layout, -- Gitblit v1.9.2