feat: tabBar页面登录优化

This commit is contained in:
h_mo 2023-05-08 21:17:04 +08:00
parent 4e68c4f5f3
commit 825db5362a
3 changed files with 22 additions and 8 deletions

View File

@ -6,13 +6,18 @@
"style": { "style": {
"navigationBarTitleText": "Home" "navigationBarTitleText": "Home"
}, },
"meta": {} "meta": {
"tabBar": true
}
}, },
{ {
"name": "Demo", "name": "Demo",
"path": "pages/demo/index", "path": "pages/demo/index",
"style": { "style": {
"navigationBarTitleText": "Demo" "navigationBarTitleText": "Demo"
},
"meta": {
"tabBar": true
} }
}, },
{ {
@ -22,7 +27,8 @@
"navigationBarTitleText": "关于" "navigationBarTitleText": "关于"
}, },
"meta": { "meta": {
"ignoreAuth": true "ignoreAuth": true,
"tabBar": true
} }
}, },
{ {

View File

@ -28,11 +28,16 @@ const submit = (e: any) => {
setTimeout(() => { setTimeout(() => {
if (unref(pageQuery)?.redirect) { if (unref(pageQuery)?.redirect) {
// redirect() // redirect()
// replacetabbarreplaceAll const params = omit(unref(pageQuery), ['redirect', 'tabBar']);
router.replaceAll({ name: unref(pageQuery).redirect, params: omit(unref(pageQuery), ['redirect']) }); if (unref(pageQuery)?.tabBar) {
// replacetabbarreplaceAll
router.replaceAll({ name: unref(pageQuery).redirect, params });
} else {
router.replace({ name: unref(pageQuery).redirect, params });
}
} else { } else {
// //
router.replaceAll({ name: 'Home' }); router.back();
} }
}, 1500); }, 1500);
}); });

View File

@ -16,7 +16,7 @@ function createBeforeEachGuard(router: Router) {
} else if (!authStore.isLogin && to && to.name !== 'Login') { } else if (!authStore.isLogin && to && to.name !== 'Login') {
// 如果没有登录且目标路由不是登录页面则跳转到登录页面 // 如果没有登录且目标路由不是登录页面则跳转到登录页面
// 将目标路由和参数传入登录页面,登录成功后直接跳转到目标路由,优化体验 // 将目标路由和参数传入登录页面,登录成功后直接跳转到目标路由,优化体验
next({ name: 'Login', params: { redirect: to.name, ...to.query }, navType: 'replaceAll' }); next({ name: 'Login', params: { redirect: to.name!, tabBar: to?.meta?.tabBar, ...to.query }, navType: 'push' });
} else if (authStore.isLogin && to && to.name === 'Login') { } else if (authStore.isLogin && to && to.name === 'Login') {
// 如果已经登录且目标页面是登录页面则跳转至首页 // 如果已经登录且目标页面是登录页面则跳转至首页
next({ name: 'Home', navType: 'replaceAll' }); next({ name: 'Home', navType: 'replaceAll' });
@ -28,10 +28,13 @@ function createBeforeEachGuard(router: Router) {
function createAfterEachGuard(router: Router) { function createAfterEachGuard(router: Router) {
router.afterEach((to) => { router.afterEach((to) => {
console.log('afterEach', to);
// @ts-ignore
if (to && to?.meta?.ignoreAuth) return;
const authStore = useAuthStore(); const authStore = useAuthStore();
if (!authStore.isLogin && to && to.name !== 'Login') { if (!authStore.isLogin && to && to.name !== 'Login') {
// 如果没有登录且目标路由不是登录页面则跳转到登录页面 // 如果没有登录且目标路由不是登录页面则跳转到登录页面
router.replaceAll({ name: 'Login' }); router.push({ name: 'Login', tabBar: to?.meta?.tabBar, ...to.query });
} else if (authStore.isLogin && to && to.name === 'Login') { } else if (authStore.isLogin && to && to.name === 'Login') {
// 如果已经登录且目标页面是登录页面则跳转至首页 // 如果已经登录且目标页面是登录页面则跳转至首页
router.replaceAll({ name: 'Home' }); router.replaceAll({ name: 'Home' });