mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
fix: login fetch error
This commit is contained in:
parent
4aa3a66ce9
commit
e201ff071f
@ -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) {
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/* 登录后的处理函数 */
|
/* 登录后的处理函数 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user