|
|
|
@ -2,7 +2,11 @@ import router from '@/router/index' |
|
|
|
|
import userStore from './store/module/user' |
|
|
|
|
|
|
|
|
|
// 定义要求登录访问的名单
|
|
|
|
|
const asyncRouterName = ['UserInfo','RegistrationPersonage','RegistrationGroup'] |
|
|
|
|
const asyncRouterName = [ |
|
|
|
|
'UserInfo', |
|
|
|
|
'RegistrationPersonage', |
|
|
|
|
'RegistrationGroup', |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
const asyncRouter = (path: string) => { |
|
|
|
|
return asyncRouterName.includes(path) |
|
|
|
@ -10,23 +14,20 @@ const asyncRouter = (path: string) => { |
|
|
|
|
router.beforeEach(async (to, form, next) => { |
|
|
|
|
const useuserStore = userStore() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (useuserStore.token) { |
|
|
|
|
if (to.path === '/login') { |
|
|
|
|
next({ path: '/' }) |
|
|
|
|
} else { |
|
|
|
|
useuserStore.getUserInfo() |
|
|
|
|
next() |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (!Object.keys(useuserStore.userInfo).length) { |
|
|
|
|
if (asyncRouter(to.name as string)) { |
|
|
|
|
next('/login') |
|
|
|
|
if (!Object.keys(useuserStore.userInfo).length) { |
|
|
|
|
useuserStore.getUserInfo() |
|
|
|
|
next() |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
next() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (asyncRouter(to.name as string)) { |
|
|
|
|
next('/login') |
|
|
|
|
} else { |
|
|
|
|
next() |
|
|
|
|
} |
|
|
|
|