대량등록, 사용자ID 등록 팝업 수정

This commit is contained in:
USER
2022-07-19 16:40:10 +09:00
parent f9d6fe61ca
commit 681c0bb102
12 changed files with 68 additions and 21 deletions

View File

@@ -76,7 +76,7 @@ router.beforeEach((to, from, next) => {
const isPublic = to.matched.some(record => record.meta.public);
const loggedIn = !!tokenSvc.getToken();
if (!isPublic && !loggedIn) {
if (!isPublic && !loggedIn) {
return next('/login');
}else{
var nextUrl = to.fullPath;
@@ -85,7 +85,7 @@ router.beforeEach((to, from, next) => {
const rootUrl = store.getters['login/getRootUrl'];
if(rootUrl == null){
return next('/login');
}
}
return next(rootUrl);
}
}