fix #7749
This commit is contained in:
parent
7e30910ab8
commit
de69cab239
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 85b4313dbea6b9765aec2f865977bb7fe8750bab
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 0179793ec891856d6f37a3be16ba4c22f67a81b5
|
|
@ -111,7 +111,9 @@ export default defineComponent({
|
||||||
|
|
||||||
onLogin(res) {
|
onLogin(res) {
|
||||||
if (this.autoSet) {
|
if (this.autoSet) {
|
||||||
login(res.i);
|
return login(res.i);
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -144,7 +146,7 @@ export default defineComponent({
|
||||||
});
|
});
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
this.$emit('login', res);
|
this.$emit('login', res);
|
||||||
this.onLogin(res);
|
return this.onLogin(res);
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
if (err === null) return;
|
if (err === null) return;
|
||||||
os.dialog({
|
os.dialog({
|
||||||
|
|
|
@ -178,14 +178,14 @@ export default defineComponent({
|
||||||
'hcaptcha-response': this.hCaptchaResponse,
|
'hcaptcha-response': this.hCaptchaResponse,
|
||||||
'g-recaptcha-response': this.reCaptchaResponse,
|
'g-recaptcha-response': this.reCaptchaResponse,
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
os.api('signin', {
|
return os.api('signin', {
|
||||||
username: this.username,
|
username: this.username,
|
||||||
password: this.password
|
password: this.password
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
this.$emit('signup', res);
|
this.$emit('signup', res);
|
||||||
|
|
||||||
if (this.autoSet) {
|
if (this.autoSet) {
|
||||||
login(res.i);
|
return login(res.token);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
|
|
|
@ -53,7 +53,7 @@ export default defineComponent({
|
||||||
username: this.username,
|
username: this.username,
|
||||||
password: this.password,
|
password: this.password,
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
login(res.i);
|
return login(res.token);
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.submitting = false;
|
this.submitting = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue