index.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import TeacherRouter from './teacherRouter'
  4. import AppRouter from './appRouter'
  5. import AuditionRouter from './auditionRouter'
  6. Vue.use(Router)
  7. let defaultRouter = [
  8. {
  9. path: '/',
  10. redirect: {
  11. name: 'business'
  12. }
  13. }, {
  14. path: '/queryFortuneBag',
  15. name: 'FortuneBag',
  16. component: () => import(/* webpackChunkName:'CallNames'*/'@/views/teacher/queryList/queryFortuneBag'),
  17. meta: {
  18. descrition: '页面查看',
  19. weight: 1 // 页面权重
  20. }
  21. },
  22. {
  23. path: '/queryActiveList',
  24. name: 'ActiveList',
  25. component: () => import(/* webpackChunkName:'CallNames'*/'@/views/teacher/queryList/queryActiveList'),
  26. meta: {
  27. descrition: '页面查看',
  28. weight: 1 // 页面权重
  29. }},
  30. {
  31. path: '/guide',
  32. name: 'guide',
  33. component: () => import(/* webpackChunkName:'CallNames'*/'@/views/rules/guide'),
  34. meta: {
  35. descrition: '投屏引导',
  36. weight: 1 // 页面权重
  37. }
  38. }, {
  39. path: '/applyActive',
  40. name: 'applyActive',
  41. component: () => import(/* webpackChunkName:'applyActive' */'@/views/applyActive/index.vue'),
  42. meta: {
  43. descrition: '考级活动',
  44. weight: 0
  45. }
  46. }, {
  47. path: '/registerProtocol',
  48. name: 'registerProtocol',
  49. component: () => import(/* webpackChunkName:'registerProtocol' */'@/views/protocol/registerProtocol.vue'),
  50. meta: {
  51. descrition: '查看协议',
  52. weight: 0
  53. }
  54. },{
  55. path: '/auth',
  56. name: 'auth',
  57. component: () => import(/* webpackChunkName:'auth' */'@/views/protocol/auth.vue'),
  58. meta: {
  59. descrition: '实名认证',
  60. weight: 0
  61. }
  62. }, {
  63. path: '/afterClassEvaluate',
  64. name: 'afterClassEvaluate',
  65. component: () => import(/* webpackChunkName:'afterClassEvaluate' */'@/views/afterClassEvaluate/index.vue'),
  66. meta: {
  67. descrition: '课后评价',
  68. weight: 0
  69. }
  70. }
  71. ]
  72. defaultRouter = defaultRouter.concat(TeacherRouter)
  73. .concat(AppRouter)
  74. .concat(AuditionRouter)
  75. const router = new Router({
  76. // mode: 'history',
  77. base: process.env.BASE_URL,
  78. routes: defaultRouter,
  79. scrollBehavior () {
  80. return { x: 0, y: 0 }
  81. }
  82. })
  83. router.onError((error) => {
  84. const pattern = /Loading chunk (\d)+ failed/g;
  85. const isChunkLoadFailed = error.message.match(pattern);
  86. const targetPath = router.history.pending.fullPath;
  87. if (isChunkLoadFailed) {
  88. router.replace(targetPath);
  89. }
  90. })
  91. export default router