登录流程bug修改

This commit is contained in:
FengHui
2026-04-10 19:46:42 +08:00
parent 3fe4dbe47f
commit 3d8e13c665
5 changed files with 98 additions and 37 deletions

View File

@@ -191,7 +191,11 @@ function close() {
}
function confirm() {
useUserStore().logOut();
useUserStore().logOut(false); // 不显示登录弹窗
// 跳转到首页
uni.reLaunch({
url: '/pages/index/index'
});
}
const isAbove90 = (percent) => parseFloat(percent) < 90;