// 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 }