| | |
| | | component: () => import('@/views/Manage/TestPaper/QuestionBank.vue'), |
| | | meta: { title: '题库管理' } |
| | | }, |
| | | // 科目管理 |
| | | { |
| | | path: 'subject', |
| | | name: 'subject', |
| | | component: () => import('@/views/Manage/TestPaper/subject.vue'), |
| | | meta: { title: '科目管理' } |
| | | }, |
| | | // 试卷生成 |
| | | { |
| | | path: 'test-paper-generation', |
| | | name: 'TestPaperGeneration', |
| | | component: () => import('@/views/Manage/TestPaper/TestPaperGeneration.vue') |
| | | }, |
| | | //随机试卷模板管理 |
| | | { |
| | | path: 'paper-template', |
| | | name: 'PaperTemplate', |
| | | component: () => import('@/views/Manage/TestPaper/PaperTemplate.vue') |
| | | }, |
| | | // 班级管理 |
| | | { |
| | |
| | | ] |
| | | |
| | | const router = new Router({ |
| | | mode: 'history', |
| | | routes: constantRoutes |
| | | }) |
| | | |