feat: 系统免登录参数路由跳转
This commit is contained in:
@@ -182,7 +182,12 @@ router.beforeEach(async (to, from, next) => {
|
||||
next({ name: 'Index' });
|
||||
}
|
||||
|
||||
const token = getToken();
|
||||
let token = getToken();
|
||||
|
||||
// 免用户登录认证
|
||||
if (!appStore.loginAuth) {
|
||||
token = '== Not Login Auth ==';
|
||||
}
|
||||
|
||||
// 没有token
|
||||
if (!token) {
|
||||
|
||||
Reference in New Issue
Block a user