수정건 수정

This commit is contained in:
USER
2022-08-05 14:05:35 +09:00
parent 8971945e93
commit e67838c044
13 changed files with 101 additions and 32 deletions

View File

@@ -71,10 +71,12 @@ const router = new Router({
router.beforeEach((to, from, next) => {
const isPublic = to.matched.some(record => record.meta.public);
const loggedIn = !!tokenSvc.getToken();
if (!isPublic && !loggedIn) {
return next('/login');
}else{
var nextUrl = to.fullPath;
var fromUrl = from.fullPath;
if(nextUrl == '/'){
console.log(store.getters);
const rootUrl = store.getters['login/getRootUrl'];
@@ -82,7 +84,12 @@ router.beforeEach((to, from, next) => {
return next('/login');
}
return next(rootUrl);
}
}else if(nextUrl == '/view/login/auth'){
if(fromUrl != '/login'){
return next('/login');
}
}
}
to.matched.some(record => {