| | |
| | | { |
| | | path: '/', |
| | | name: 'examIndex', |
| | | component: () => import('@/views/Exam/Exam.vue') |
| | | component: () => import('@/views/Exam/ExamManage.vue'), |
| | | }, |
| | | { |
| | | path: '/exam/mark/paper', |
| | | name: 'markPaper', |
| | | component: () => import('@/views/Exam/MarkPaper.vue'), |
| | | }, |
| | | { |
| | | path: 'myexam', |
| | |
| | | name: 'attendanceRecord', |
| | | component: () => import('@/views/Manage/AttendanceRecord/index.vue') |
| | | }, |
| | | // 成绩查询 |
| | | // 答卷列表 |
| | | { |
| | | path: 'score-inquiry', |
| | | name: 'ScoreInquiry', |
| | | component: () => import('@/views/Manage/ScoreInquiry/index.vue') |
| | | }, |
| | | // 答卷成绩 |
| | | { |
| | | path: 'answer-list', |
| | | name: 'ScoreInquiry', |
| | | component: () => import('@/views/Manage/ScoreInquiry/list.vue') |
| | | }, |
| | | // 答卷详情 |
| | | { |
| | | path: 'answer-detail', |
| | | name: 'ScoreInquiry', |
| | | component: () => import('@/views/Manage/ScoreInquiry/detail.vue') |
| | | }, |
| | | // 学分计算规则 |
| | | { |
| | |
| | | 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 |
| | | }) |
| | | |