Merge branch 'dev_vite' of ssh://18.167.251.121:10002/aidlab/aida_front into dev_vite

This commit is contained in:
2025-12-12 10:35:54 +08:00
6 changed files with 50 additions and 21 deletions

View File

@@ -553,13 +553,14 @@ export default defineComponent({
loginType: "EMAIL",
userId: this.userId,
};
this.$emit('update:isMask',true)
this.store.commit('set_loading', true)
Https.axiosPost(Https.httpUrls.accountLogin, data)
.then((rv: any) => {
this.setSuccessLogin(rv);
this.setSuccessLogin(rv);
this.store.commit('set_loading', false)
})
.catch((res) => {
this.$emit('update:isMask',false)
this.store.commit('set_loading', false)
});
},1000)
},