mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-04 20:12:51 +08:00
Merge pull request #1 from ckdzh/patch-1
fix: modify order of storing token
This commit is contained in:
commit
1dc8aead0a
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user