|
|
|
@ -2,13 +2,13 @@ import router from "./index"; |
|
|
|
|
import Setting from "@/setting"; |
|
|
|
|
import util from "@/libs/util"; |
|
|
|
|
|
|
|
|
|
const whiteList = ['/login', '/index/list', '/cityPartner/list', '/devPlatform/list'] // 白名单
|
|
|
|
|
const whiteList = Setting.whiteList // 白名单
|
|
|
|
|
router.beforeEach((to, from, next) => { |
|
|
|
|
document.title = Setting.titleSuffix; |
|
|
|
|
const role = util.local.get(Setting.tokenKey); |
|
|
|
|
if (!role && !whiteList.includes(to.path)) { |
|
|
|
|
next('/index/list') |
|
|
|
|
} else if(role && whiteList.includes(to.path)) { |
|
|
|
|
} else if(role && to.path === '/login') { |
|
|
|
|
next('/station') |
|
|
|
|
} else { |
|
|
|
|
next() |
|
|
|
|