zengh
2022-05-09 52c39f5e2711e5535b689b66dfa5e100c7882b7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// router.js
import {
    RouterMount,
    createRouter
} from 'uni-simple-router';
import WxStorage from "../static/lib/wxStorage.js" //微信Storage
 
const router = createRouter({
    platform: process.env.VUE_APP_PLATFORM,
    routes: [...ROUTES]
});
//全局路由前置守卫
router.beforeEach((to, from, next) => {
    console.log('跳转开始')
    if (to.name == 'loging') {
        next();
        return
    }
    var inTher = WxStorage.get("init");
    console.log(inTher);
    if (inTher == "false") {
        next({
            name: 'loging'
        });
    } else if (inTher == "true") {
        next();
    }
 
});
// 全局路由后置守卫
router.afterEach((to, from) => {
    console.log('跳转结束')
})
 
export {
    router,
    RouterMount
}