From ad0def092eeab7ff984c0c9ce33c1ae55f015488 Mon Sep 17 00:00:00 2001 From: Chen Kang <109266979+ckdzh@users.noreply.github.com> Date: Tue, 19 Dec 2023 18:08:15 +0800 Subject: [PATCH] Update auth.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 在请求用户信息之前保存token --- src/store/modules/auth.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/store/modules/auth.ts b/src/store/modules/auth.ts index 674d715..52625ec 100644 --- a/src/store/modules/auth.ts +++ b/src/store/modules/auth.ts @@ -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