From 3cfe8bed60cf93c76ce6317379eefe8c07bd9245 Mon Sep 17 00:00:00 2001 From: hezhouhang Date: Tue, 21 Jun 2022 16:45:04 +0800 Subject: [PATCH] fix: redirect path in permission --- src/permission.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/permission.js b/src/permission.js index ff5eaad2..3f58b2d9 100644 --- a/src/permission.js +++ b/src/permission.js @@ -49,7 +49,7 @@ router.beforeEach(async(to, from, next) => { // remove token and go to login page to re-login await store.dispatch('user/resetToken') Message.error(error || 'Has Error') - next(`/login?redirect=${to.path}`) + next(`/login?redirect=${to.fullPath}`) NProgress.done() } } @@ -62,7 +62,7 @@ router.beforeEach(async(to, from, next) => { next() } else { // other pages that do not have permission to access are redirected to the login page. - next(`/login?redirect=${to.path}`) + next(`/login?redirect=${to.fullPath}`) NProgress.done() } }