Pre Merge pull request !14 from 舜岳/N/A

This commit is contained in:
舜岳 2023-05-09 08:24:53 +00:00 committed by Gitee
commit 25adb64b20
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -33,7 +33,7 @@ function createAfterEachGuard(router: Router) {
const authStore = useAuthStore();
if (!authStore.isLogin && to && to.name !== 'Login') {
// 如果没有登录且目标路由不是登录页面则跳转到登录页面
router.push({ name: 'Login', tabBar: to?.meta?.tabBar, ...to.query });
router.push({ name: 'Login', params: { tabBar: to?.meta?.tabBar, ...to.query }});
} else if (authStore.isLogin && to && to.name === 'Login') {
// 如果已经登录且目标页面是登录页面则跳转至首页
router.replaceAll({ name: 'Home' });