Update auth.ts

fix: 在请求用户信息之前保存token
This commit is contained in:
Chen Kang 2023-12-19 18:08:15 +08:00 committed by GitHub
parent b56403308c
commit ad0def092e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,15 +91,14 @@ export const useAuthStore = defineStore('auth-store', {
async catchUserInfo(userInfo: ApiAuth.loginToken) {
let catchSuccess = false
const { accessToken, refreshToken, id } = userInfo
const { error, data } = await fetchUserInfo({ userId: id })
if (error)
return catchSuccess
// 先存储token
local.set('token', accessToken)
local.set('refreshToken', refreshToken)
this.token = accessToken
this.refreshToken = refreshToken
const { error, data } = await fetchUserInfo({ userId: id })
if (error)
return catchSuccess
// 请求/存储用户信息
local.set('userInfo', data)
this.userInfo = data