mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
commit
6e9b9b1f36
@ -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' });
|
||||
|
Loading…
x
Reference in New Issue
Block a user