fix: login fetch error

This commit is contained in:
chansee97 2024-06-05 09:53:46 +08:00
parent 4aa3a66ce9
commit e201ff071f

View File

@ -53,12 +53,16 @@ export const useAuthStore = defineStore('auth-store', {
/* 用户登录 */ /* 用户登录 */
async login(userName: string, password: string) { async login(userName: string, password: string) {
const { isSuccess, data } = await fetchLogin({ userName, password }) try {
if (!isSuccess) const { isSuccess, data } = await fetchLogin({ userName, password })
return if (!isSuccess)
return
// 处理登录信息 // 处理登录信息
await this.handleAfterLogin(data) await this.handleAfterLogin(data)
}
catch (e) {
}
}, },
/* 登录后的处理函数 */ /* 登录后的处理函数 */