index.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. import { updateWechatToken } from '@/utils'
  4. Vue.use(VueRouter)
  5. const _import = require('./import-' + process.env.NODE_ENV)
  6. const routes = [
  7. // {
  8. // path: '*',
  9. // redirect: '/404'
  10. // },
  11. {
  12. path: '/404',
  13. name: '404',
  14. component: _import('page/404/index')
  15. },
  16. {
  17. path: '/login',
  18. name: 'Login',
  19. component: _import('page/login/index'),
  20. meta: {
  21. title: '登录'
  22. }
  23. },
  24. {
  25. path: '/',
  26. component: _import('views/marketing/index'),
  27. children: [
  28. {
  29. path: '', // 省钱
  30. name: 'MarketingSave',
  31. component: _import('views/marketing/save/index'),
  32. meta: {
  33. isUseCache: false,
  34. keepAlive: true
  35. }
  36. },
  37. {
  38. path: '/return', // 返钱
  39. name: 'MarketingReturn',
  40. component: _import('views/marketing/return/index'),
  41. meta: {
  42. isUseCache: false,
  43. keepAlive: true
  44. }
  45. },
  46. {
  47. path: '/make', // 赚钱
  48. name: 'MarketingMake',
  49. component: _import('views/marketing/make/index'),
  50. meta: {
  51. isUseCache: false,
  52. keepAlive: true
  53. }
  54. }
  55. ]
  56. }
  57. ]
  58. const router = new VueRouter({
  59. mode: 'history',
  60. routes,
  61. scrollBehavior (to, from, savedPosition) {
  62. if (to.hash) {
  63. return {
  64. selector: to.hash
  65. }
  66. }
  67. // keep-alive 返回缓存页面后记录浏览位置
  68. if (savedPosition && to.meta.keepAlive) {
  69. return savedPosition
  70. }
  71. // 异步滚动操作
  72. return new Promise((resolve) => {
  73. setTimeout(() => {
  74. resolve({ x: 0, y: 1 })
  75. }, 0)
  76. })
  77. }
  78. })
  79. const originalPush = VueRouter.prototype.push
  80. VueRouter.prototype.push = function push (location, onResolve, onReject) {
  81. if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
  82. return originalPush.call(this, location).catch(err => err)
  83. }
  84. router.beforeEach((to, from, next) => {
  85. updateWechatToken()
  86. next()
  87. })
  88. export default router