index.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // router.js
  2. import {
  3. RouterMount,
  4. createRouter
  5. } from 'uni-simple-router';
  6. import store from '@/store/index.js'
  7. // console.log(ROUTES);
  8. const router = createRouter({
  9. platform: process.env.VUE_APP_PLATFORM,
  10. //H5跳转路由锁
  11. routerErrorEach: (error, router) => {
  12. if (error.type === 3) {
  13. /*
  14. error.type
  15. 0 表示 next(false)
  16. 1 表示 next(unknownType)
  17. 2 表示加锁状态,禁止跳转
  18. 3 表示在获取页面栈的时候,页面栈不够level获取
  19. */
  20. router.$lockStatus = false;
  21. }
  22. },
  23. //小程序跳转路由锁
  24. applet: {
  25. animationDuration: 300 //默认 300ms v2.0.6+
  26. },
  27. routes: [...ROUTES]
  28. });
  29. //全局路由前置守卫
  30. router.beforeEach((to, from, next) => {
  31. // next();
  32. if (store.getters.token) {
  33. next();
  34. } else {
  35. if (
  36. // 这些页面不需要验证登录
  37. to.path == '/pages/login/index' || '/pages/login/indexs' || '/pages/index/index'
  38. ) {
  39. next();
  40. } else {
  41. next('/pages/login/index');
  42. }
  43. }
  44. });
  45. // 全局路由后置守卫
  46. router.afterEach((to, from) => {
  47. // console.log('跳转结束')
  48. })
  49. export {
  50. router,
  51. RouterMount
  52. }