修复微信环境下获取完用户信息跳转的用户登录&绑定地址

pull/159/MERGE
linyunqi 2025-06-22 15:55:14 +08:00
parent 1f169a1ed1
commit 654b85eba0
1 changed files with 4 additions and 1 deletions

View File

@ -631,10 +631,13 @@ function pages() {
export function getRootUrl() {
let url = '';
// #ifdef H5
url = location.origin + location.pathname;
url = location.origin;
// + location.pathname;
if (location.hash !== '') {
url += '#/';
} else {
url += '/';
}
// #endif
return url;