Merge pull request #1 from ckdzh/patch-1

fix: modify order of storing token
This commit is contained in:
Rock Chen 2023-12-19 18:58:01 +08:00 committed by GitHub
commit 1dc8aead0a
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