50 lines
995 B
JavaScript
50 lines
995 B
JavaScript
import {
|
||
RouterMount,
|
||
createRouter
|
||
} from 'uni-simple-router';
|
||
import store from '@/store/index'
|
||
|
||
// CALL 页面,必须是nvue,但是NVUE 不支持webpack的 ROUTES 注入
|
||
// https://github.com/SilurianYang/uni-read-pages/issues/20
|
||
// #ifdef APP-NVUE
|
||
const ROUTES = [{
|
||
"path": "/pages/im/private/call"
|
||
}];
|
||
// #endif
|
||
|
||
const router = createRouter({
|
||
platform: process.env.VUE_APP_PLATFORM,
|
||
routes: [...ROUTES]
|
||
});
|
||
|
||
// console.log(...ROUTES)
|
||
|
||
//全局路由前置守卫
|
||
router.beforeEach((to, from, next) => {
|
||
if(to.name === 'Auth' && store.getters.getToken != '' && uni.getStorageSync('token') != ''){
|
||
if(uni.getStorageSync('isnew') === 0){
|
||
next({
|
||
name: 'AuthRole',
|
||
NAVTYPE: 'replace'
|
||
})
|
||
return
|
||
}
|
||
next({
|
||
name: 'Life',
|
||
NAVTYPE: 'pushTab'
|
||
})
|
||
return
|
||
}
|
||
next();
|
||
});
|
||
|
||
// 全局路由后置守卫
|
||
router.afterEach((to, from) => {
|
||
// console.log('跳转结束')
|
||
})
|
||
|
||
export {
|
||
router,
|
||
RouterMount
|
||
}
|