mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
perf: 注释logout api 的调用
This commit is contained in:
parent
cd96923d77
commit
7bc5b4ccba
@ -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);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user