新增跳转时打开新窗口功能

This commit is contained in:
2026-07-24 18:19:33 +08:00
parent 0e88255852
commit f3bdb07e3d
22 changed files with 132 additions and 46 deletions
+2 -2
View File
@@ -176,7 +176,7 @@
function redirectHome() {
setStatus("登录成功,正在跳转...", false);
window.setTimeout(() => {
window.location.replace(homeUrl());
NavigationUtil.open(homeUrl());
}, 500);
}
@@ -238,7 +238,7 @@
clearAccountBindMode();
setStatus("微信绑定成功,正在返回个人中心...", false);
window.setTimeout(() => {
window.location.replace(returnUrl);
NavigationUtil.open(returnUrl);
}, 500);
}