fix: 登录选择钉钉等第三方弹窗后点击取消弹窗后恢复登录按钮loading状态

This commit is contained in:
liuyang 2023-02-15 15:48:52 +08:00
parent 2d38a421c2
commit d47ce54e18

View File

@ -263,8 +263,8 @@ export default {
await this.$prompt('请输入租户名称', "提示", { await this.$prompt('请输入租户名称', "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消" cancelButtonText: "取消"
}).then(({value}) => { }).then(async ({value}) => {
getTenantIdByName(value).then(res => { await getTenantIdByName(value).then(res => {
const tenantId = res.data; const tenantId = res.data;
tenant = true tenant = true
if (tenantId && tenantId >= 0) { if (tenantId && tenantId >= 0) {
@ -272,6 +272,9 @@ export default {
} }
}); });
}).catch(() => { }).catch(() => {
// loading
this.loading = false;
return false return false
}); });
} else { } else {