92 lines
2.5 KiB
JavaScript
92 lines
2.5 KiB
JavaScript
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
import Layout from '@/layout'
|
|
|
|
Vue.use(Router)
|
|
const router = new Router({
|
|
routes: [
|
|
{ path: '/login', name: 'Login', component: () => import('@/views/login/index'), meta: { title: '登录', bodyBackground: '#fbfbfb' } },
|
|
{ path: '/register', name: 'Register', component: () => import('@/views/register/index'), meta: { title: '注册', bodyBackground: '#fbfbfb' } },
|
|
{
|
|
path: '/',
|
|
component: Layout,
|
|
redirect: '/index',
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
component: () => import('@/views/dashboard/index'),
|
|
name: 'Dashboard',
|
|
meta: { title: '首页' }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/paper',
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
component: () => import('@/views/paper/index'),
|
|
name: 'PaperIndex',
|
|
meta: { title: '试卷中心' }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/record',
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
component: () => import('@/views/record/index'),
|
|
name: 'RecordIndex',
|
|
meta: { title: '考试记录' }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/question',
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
component: () => import('@/views/question-error/index'),
|
|
name: 'QuestionErrorIndex',
|
|
meta: { title: '错题本' }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/user',
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
component: () => import('@/views/user-info/index'),
|
|
name: 'UserInfo',
|
|
meta: { title: '个人中心' }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: '/user',
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: 'message',
|
|
component: () => import('@/views/user-info/message'),
|
|
name: 'UserMessage',
|
|
meta: { title: '消息中心' }
|
|
}
|
|
]
|
|
},
|
|
{ path: '/do', name: 'ExamPaperDo', component: () => import('@/views/exam/paper/do'), meta: { title: '试卷答题' } },
|
|
{ path: '/edit', name: 'ExamPaperEdit', component: () => import('@/views/exam/paper/edit'), meta: { title: '试卷批改' } },
|
|
{ path: '/read', name: 'ExamPaperRead', component: () => import('@/views/exam/paper/read'), meta: { title: '试卷查看' } },
|
|
{ path: '*', component: () => import('@/views/error-page/404'), meta: { title: '404' }
|
|
}
|
|
]
|
|
})
|
|
|
|
export { router }
|