12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import modules from './modules'
- import Vue from 'vue'
- import Router from '@/plugin/uni-simple-router/index.js'
- import {ACCESS_TOKEN,USER_INFO} from '@/common/util/constants.js'
- Vue.use(Router)
- //初始化
- const router = new Router({
- encodeURI:true,
- routes: [...modules]//路由表
- });
- const whiteList = ['/pages/login/login']
- //全局路由前置守卫
- router.beforeEach((to, from, next) => {
-
- let token=uni.getStorageSync(ACCESS_TOKEN);
-
- console.log(to.name)
- console.log(token)
- if(token){
- next()
- console.log(true)
- }else{
- console.log(false)
- if(to.name=='login'){next()}
- else if(to.name=='zhuce'){next()}
- else{
- next({name: "login"})
- }
- if (whiteList.indexOf(to.path) !== -1) {
-
- }else{
-
- }
- }
- })
- // 全局路由后置守卫
- router.afterEach((to, from) => {
- console.log("afterEach")
- })
- export default router;
|