12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import Vue from 'vue'
- import Router from 'vue-router'
- import TeacherRouter from './teacherRouter'
- import AppRouter from './appRouter'
- import AuditionRouter from './auditionRouter'
- Vue.use(Router)
- let defaultRouter = [
- {
- path: '/',
- redirect: {
- name: 'business'
- }
- }, {
- path: '/queryFortuneBag',
- name: 'FortuneBag',
- component: () => import(/* webpackChunkName:'CallNames'*/'@/views/teacher/queryList/queryFortuneBag'),
- meta: {
- descrition: '页面查看',
- weight: 1 // 页面权重
- }
- },
- {
- path: '/queryActiveList',
- name: 'ActiveList',
- component: () => import(/* webpackChunkName:'CallNames'*/'@/views/teacher/queryList/queryActiveList'),
- meta: {
- descrition: '页面查看',
- weight: 1 // 页面权重
- }},
- {
- path: '/guide',
- name: 'guide',
- component: () => import(/* webpackChunkName:'CallNames'*/'@/views/rules/guide'),
- meta: {
- descrition: '投屏引导',
- weight: 1 // 页面权重
- }
- }, {
- path: '/applyActive',
- name: 'applyActive',
- component: () => import(/* webpackChunkName:'applyActive' */'@/views/applyActive/index.vue'),
- meta: {
- descrition: '考级活动',
- weight: 0
- }
- }, {
- path: '/registerProtocol',
- name: 'registerProtocol',
- component: () => import(/* webpackChunkName:'registerProtocol' */'@/views/protocol/registerProtocol.vue'),
- meta: {
- descrition: '查看协议',
- weight: 0
- }
- },{
- path: '/auth',
- name: 'auth',
- component: () => import(/* webpackChunkName:'auth' */'@/views/protocol/auth.vue'),
- meta: {
- descrition: '实名认证',
- weight: 0
- }
- }, {
- path: '/afterClassEvaluate',
- name: 'afterClassEvaluate',
- component: () => import(/* webpackChunkName:'afterClassEvaluate' */'@/views/afterClassEvaluate/index.vue'),
- meta: {
- descrition: '课后评价',
- weight: 0
- }
- }
- ]
- defaultRouter = defaultRouter.concat(TeacherRouter)
- .concat(AppRouter)
- .concat(AuditionRouter)
- const router = new Router({
- // mode: 'history',
- base: process.env.BASE_URL,
- routes: defaultRouter,
- scrollBehavior () {
- return { x: 0, y: 0 }
- }
- })
- router.onError((error) => {
- const pattern = /Loading chunk (\d)+ failed/g;
- const isChunkLoadFailed = error.message.match(pattern);
- const targetPath = router.history.pending.fullPath;
- if (isChunkLoadFailed) {
- router.replace(targetPath);
- }
- })
- export default router
|