【代码修复】login.vue 微信登录绑定过慢,导致登录失败
parent
0b9d7a8808
commit
f67e6a7f54
|
@ -14,13 +14,14 @@
|
||||||
new URLSearchParams(location.search).forEach((value, key) => {
|
new URLSearchParams(location.search).forEach((value, key) => {
|
||||||
options[key] = value;
|
options[key] = value;
|
||||||
});
|
});
|
||||||
|
// 执行登录 or 绑定,注意需要 await 绑定
|
||||||
const event = options.event;
|
const event = options.event;
|
||||||
const code = options.code;
|
const code = options.code;
|
||||||
const state = options.state;
|
const state = options.state;
|
||||||
if (event === 'login') { // 场景一:登录
|
if (event === 'login') { // 场景一:登录
|
||||||
const res = await sheep.$platform.useProvider().login(code, state);
|
await sheep.$platform.useProvider().login(code, state);
|
||||||
} else if (event === 'bind') { // 场景二:绑定
|
} else if (event === 'bind') { // 场景二:绑定
|
||||||
sheep.$platform.useProvider().bind(code, state);
|
await sheep.$platform.useProvider().bind(code, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 检测 H5 登录回调
|
// 检测 H5 登录回调
|
||||||
|
|
Loading…
Reference in New Issue