12345678910111213141516171819202122232425262728293031323334353637383940 |
- const studentRoute = {
- path: '/train',
- name: 'train',
- component: () => import('../view/student/layout/index.vue'),
- meta: { title: '实训' },
- children: [
- {
- path: '/train/list',
- name: 'trainList',
- component: () => import('../view/student/trainList/trainList.vue'),
- meta: { title: '实训列表' },
- },
- {
- path: '/train/main/:taskId',
- name: 'trainMain',
- component: () => import('../view/student/trainMain/trainMain.vue'),
- meta: { title: '实训内容' },
- },
- {
- path: '/train/chapter/:taskId/:studentTaskId',
- name: 'trainChapter',
- component: () => import('../view/student/trainChapter/trainChapter.vue'),
- meta: { title: '实训课程学习' },
- },
- {
- path: '/train/exam/:taskId/:taskStudentId/:reportId',
- name: 'trainExam',
- component: () => import('../view/student/trainExam/trainExam.vue'),
- meta: { title: '技术报告编制' },
- },
- {
- path: '/train/share/:taskId',
- name: 'trainShare',
- component: () => import('../view/student/trainShare/trainShare.vue'),
- meta: { title: '共享报告' },
- },
- ],
- };
- export default studentRoute;
|