Commit b0863cce by liangjianmin

fix(user): 优化手机号已绑定账号跳转逻辑

- 移除手机号已绑定时的提示信息显示
- 直接跳转首页,简化用户流程
- 删除延迟跳转的定时器,提升响应速度
parent 5cc9d348
Showing with 1 additions and 7 deletions
......@@ -398,13 +398,7 @@
this.clearAllErrors();
return;
} else {
this.$message({
message: '手机号已绑定账号',
type: 'success'
});
setTimeout(() => {
window.location.href = '/';
}, 1000);
window.location.href = '/';
}
} else if (res.code === 102) {
this.setError('captcha', res.msg);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment