perf: 注释logout api 的调用

This commit is contained in:
h_mo 2024-02-25 13:46:21 +08:00
parent cd96923d77
commit 7bc5b4ccba

View File

@ -1,7 +1,7 @@
import { defineStore } from 'pinia'; import { defineStore } from 'pinia';
import { getCache, removeCache, setCache } from '@/utils/cache'; import { getCache, removeCache, setCache } from '@/utils/cache';
import { TOKEN_KEY } from '@/enums/cacheEnum'; import { TOKEN_KEY } from '@/enums/cacheEnum';
import { logout } from '@/services/api/auth'; // import { logout } from '@/services/api/auth';
interface AuthState { interface AuthState {
token?: string; token?: string;
@ -32,12 +32,11 @@ export const useAuthStore = defineStore({
*/ */
async loginOut(): Promise<any> { async loginOut(): Promise<any> {
try { try {
const res = await logout(); // await logout();
removeCache(TOKEN_KEY); removeCache(TOKEN_KEY);
this.setToken(undefined); this.setToken(undefined);
return Promise.resolve(res);
} catch (err: any) { } catch (err: any) {
return Promise.reject(err); console.error(err);
} }
}, },
/** /**