mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
chore: 更新 uni-mini-router 修复前置导航守卫无法指向跳转类型不同的页面的问题
This commit is contained in:
parent
c93b7b1df0
commit
bee039b624
@ -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",
|
||||||
|
@ -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']) });
|
// 这里replace方法无法跳转tabbar页面故改为replaceAll
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
|
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user