From 82379f6ff9ddc28abb2a0e46bc97090ec049b6e9 Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期二, 07 五月 2024 11:55:51 +0800 Subject: [PATCH] 新增人员状态、状态描述展示、设置操作 --- src/router.js | 198 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 189 insertions(+), 9 deletions(-) diff --git a/src/router.js b/src/router.js index 4bd71f1..cf03701 100644 --- a/src/router.js +++ b/src/router.js @@ -70,6 +70,19 @@ name: 'UserAdminEdit', meta: { title: '绠$悊鍛樼紪杈�', noCache: true, activeMenu: '/user/admin/list' }, hidden: true + }, + { + path: 'tag/list', + component: () => import('@/views/user/tag/list'), + name: 'TagAdminPageList', + meta: { title: '鏍囩鍒楄〃', noCache: true } + }, + { + path: 'tag/edit', + component: () => import('@/views/user/tag/edit'), + name: 'TagAdminEdit', + meta: { title: '鏍囩缂栬緫', noCache: true, activeMenu: '/user/tag/list' }, + hidden: true } ] }, @@ -106,6 +119,45 @@ component: () => import('@/views/exam/question/edit/single-choice'), name: 'singleChoicePage', meta: { title: '鍗曢�夐缂栬緫', noCache: true, activeMenu: '/exam/question/list' }, + hidden: true + }, + { + path: 'simulation/list', + component: () => import('@/views/exam/simulation/list'), + name: 'personalSimulationList', + meta: { title: '妯℃嫙鍒楄〃', noCache: true } + }, + { + path: 'personalSimulation/list', + component: () => import('@/views/exam/personalSimulation/list'), + name: 'personalSimulation', + meta: { title: '涓汉妯℃嫙', noCache: true } + }, + { + path: 'personalRandomTemplate/list', + component: () => import('@/views/exam/personalRandomTemplate/list'), + name: 'personalSimulation', + meta: { title: '闅忔満璇曞嵎', noCache: true } + }, + { + path: 'personalRandomTemplate/edit', + component: () => import('@/views/exam/personalRandomTemplate/edit'), + name: 'personalSimulationEdit', + meta: { title: '闅忔満璇曞嵎', noCache: true, activeMenu: '/exam/personalRandomTemplate/list' }, + hidden: true + }, + { + path: 'personalSimulation/edit', + component: () => import('@/views/exam/personalSimulation/edit'), + name: 'personalSimulationEdit', + meta: { title: '璇曞嵎缂栬緫', noCache: true, activeMenu: '/exam/personalSimulation/list' }, + hidden: true + }, + { + path: 'personalSimulation/list/mathList', + component: () => import('@/views/exam/mathList/list.vue'), + name: 'multiplemathList', + meta: { title: '妯℃嫙鍒楄〃璇︽儏', noCache: true, activeMenu: '/exam/mathList/list' }, hidden: true }, { @@ -215,6 +267,25 @@ component: () => import('@/views/answer/list'), name: 'AnswerPageList', meta: { title: '绛斿嵎鍒楄〃', noCache: true } + }, + { + path: 'sheetStatistics', + component: () => import('@/views/answer/sheetStatistics.vue'), + name: 'AnswerPageList', + meta: { title: '绛斿嵎缁熻', noCache: true } + }, + { + path: 'achievementStatistics', + component: () => import('@/views/answer/achievementStatistics.vue'), + name: 'AnswerPageList', + meta: { title: '鎴愮哗缁熻', noCache: true } + }, + { + path: 'achievementStatistics/gradeDetails', + component: () => import('@/views/exam/gradeDetails/list.vue'), + name: 'AnswerPageList', + meta: { title: '鎴愮哗缁熻璇︽儏', noCache: true, activeMenu: '/exam/gradeDetails/list' }, + hidden: true } ] }, @@ -260,21 +331,129 @@ } ] }, + // { + // path: '/meeting', + // component: Layout, + // name: 'MeetingPage', + // meta: { + // title: '鍦ㄧ嚎浼氳', + // icon: 'log' + // }, + // alwaysShow: true, + // children: [ + // { + // path: 'meeting/index', + // component: () => import('@/views/meeting/list'), + // name: 'MeetingUserPage', + // meta: { title: '鍦ㄧ嚎浼氳', noCache: true } + // } + // ] + // }, { - path: '/meeting', + path: '/profile', component: Layout, - name: 'MeetingPage', + hidden: true, + children: [ + { + path: 'index', + component: () => import('@/views/profile/index'), + name: 'Profile', + meta: { title: '涓汉绠�浠�', icon: 'user', noCache: true } + } + ] + }, + { path: '*', + hidden: true, + component: () => import('@/views/error-page/404'), + meta: { title: '404', noCache: true } + } +] + +const deptAdminRoutes = [ + { + path: '/redirect', + component: Layout, + hidden: true, + children: [ + { + path: '/redirect/:path*', + component: () => import('@/views/redirect/index') + } + ] + }, + { + path: '/login', + name: 'Login', + hidden: true, + component: () => import('@/views/login/index'), + meta: { title: '鐧诲綍' } + }, + { + path: '/', + component: Layout, + redirect: '/dashboard', + children: [ + { + path: 'dashboard', + component: () => import('@/views/dashboard/index'), + name: 'Dashboard', + meta: { title: '涓婚〉', icon: 'home', affix: true } + } + ] + }, + { + path: '/exam', + component: Layout, + name: 'ExamPage', meta: { - title: '鍦ㄧ嚎浼氳', - icon: 'log' + title: '鍗烽绠$悊', + icon: 'exam' + }, + children: [ + { + path: 'personalRandomTemplate/list', + component: () => import('@/views/exam/personalRandomTemplate/list'), + name: 'personalSimulation', + meta: { title: '闅忔満璇曞嵎', noCache: true } + }, + { + path: 'personalRandomTemplate/edit', + component: () => import('@/views/exam/personalRandomTemplate/edit'), + name: 'personalSimulationEdit', + meta: { title: '闅忔満璇曞嵎', noCache: true, activeMenu: '/exam/personalRandomTemplate/list' }, + hidden: true + }, + { + path: 'personalSimulation/edit', + component: () => import('@/views/exam/personalSimulation/edit'), + name: 'personalSimulationEdit', + meta: { title: '璇曞嵎缂栬緫', noCache: true, activeMenu: '/exam/personalSimulation/list' }, + hidden: true + } + ] + }, + { + path: '/answer', + component: Layout, + name: 'AnswerPage', + meta: { + title: '鎴愮哗绠$悊', + icon: 'answer' }, alwaysShow: true, children: [ { - path: 'meeting/index', - component: () => import('@/views/meeting/list'), - name: 'MeetingUserPage', - meta: { title: '鍦ㄧ嚎浼氳', noCache: true } + path: 'achievementStatistics', + component: () => import('@/views/answer/achievementStatistics.vue'), + name: 'AnswerPageList', + meta: { title: '鎴愮哗缁熻', noCache: true } + }, + { + path: 'achievementStatistics/gradeDetails', + component: () => import('@/views/exam/gradeDetails/list.vue'), + name: 'AnswerPageList', + meta: { title: '鎴愮哗缁熻璇︽儏', noCache: true, activeMenu: '/exam/gradeDetails/list' }, + hidden: true } ] }, @@ -304,5 +483,6 @@ export { constantRoutes, - router + router, + deptAdminRoutes } -- Gitblit v1.8.0