chore: 更新 uni-mini-router 修复前置导航守卫无法指向跳转类型不同的页面的问题

This commit is contained in:
xuqingkai 2023-05-08 15:59:49 +08:00
parent c93b7b1df0
commit bee039b624
3 changed files with 12 additions and 4 deletions

View File

@ -85,7 +85,7 @@
"prettier": "^2.8.8", "prettier": "^2.8.8",
"sass": "^1.62.1", "sass": "^1.62.1",
"typescript": "^5.0.4", "typescript": "^5.0.4",
"uni-mini-router": "^0.0.9", "uni-mini-router": "^0.0.11",
"uni-read-pages-vite": "^0.0.6", "uni-read-pages-vite": "^0.0.6",
"unocss": "^0.51.12", "unocss": "^0.51.12",
"unocss-preset-weapp": "^0.6.1", "unocss-preset-weapp": "^0.6.1",

View File

@ -28,7 +28,8 @@ const submit = (e: any) => {
setTimeout(() => { setTimeout(() => {
if (unref(pageQuery)?.redirect) { if (unref(pageQuery)?.redirect) {
// redirect() // redirect()
router.replace({ name: unref(pageQuery).redirect, params: omit(unref(pageQuery), ['redirect']) }); // replacetabbarreplaceAll
router.replaceAll({ name: unref(pageQuery).redirect, params: omit(unref(pageQuery), ['redirect']) });
} else { } else {
// //
router.replaceAll({ name: 'Home' }); router.replaceAll({ name: 'Home' });
@ -61,26 +62,32 @@ const submit = (e: any) => {
.container { .container {
margin: 0 auto; margin: 0 auto;
width: 80%; width: 80%;
.title { .title {
padding: 320rpx 0 32rpx 0; padding: 320rpx 0 32rpx 0;
text-align: center; text-align: center;
} }
.form-wrap { .form-wrap {
padding: 20rpx 24rpx; padding: 20rpx 24rpx;
box-shadow: 16rpx 16rpx 30rpx #e5e7eb; box-shadow: 16rpx 16rpx 30rpx #e5e7eb;
.form { .form {
.form-item { .form-item {
display: flex; display: flex;
height: 88rpx; height: 88rpx;
border-bottom: 2rpx solid #dbeafe; border-bottom: 2rpx solid #dbeafe;
align-items: center; align-items: center;
.form-label { .form-label {
min-width: 96rpx; min-width: 96rpx;
} }
.form-element { .form-element {
flex-grow: 1; flex-grow: 1;
} }
} }
.submit-btn { .submit-btn {
margin-top: 44rpx; margin-top: 44rpx;
border: 4rpx solid #bfdbfe; border: 4rpx solid #bfdbfe;
@ -88,6 +95,7 @@ const submit = (e: any) => {
border-radius: 8rpx; border-radius: 8rpx;
font-size: 28rpx; font-size: 28rpx;
color: #ffffff; color: #ffffff;
:hover { :hover {
background-color: #3b82f6; background-color: #3b82f6;
} }

View File

@ -16,10 +16,10 @@ 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} }); next({ name: 'Login', params: { redirect: to.name, ...to.query }, navType: 'replaceAll' });
} else if (authStore.isLogin && to && to.name === 'Login') { } else if (authStore.isLogin && to && to.name === 'Login') {
// 如果已经登录且目标页面是登录页面则跳转至首页 // 如果已经登录且目标页面是登录页面则跳转至首页
next({ name: 'Home' }); next({ name: 'Home', navType: 'replaceAll' });
} else { } else {
next(); next();
} }