mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
fix: modify logout name
This commit is contained in:
parent
8a5d8a67ea
commit
02ce6568b7
@ -8,7 +8,7 @@ import IconBookOpen from '~icons/icon-park-outline/book-open'
|
||||
|
||||
const { t } = useI18n()
|
||||
|
||||
const { userInfo, resetAuthStore } = useAuthStore()
|
||||
const { userInfo, logOut } = useAuthStore()
|
||||
const router = useRouter()
|
||||
|
||||
const options = computed(() => {
|
||||
@ -56,7 +56,7 @@ function handleSelect(key: string | number) {
|
||||
positiveText: t('common.confirm'),
|
||||
negativeText: t('common.cancel'),
|
||||
onPositiveClick: () => {
|
||||
resetAuthStore()
|
||||
logOut()
|
||||
},
|
||||
})
|
||||
}
|
||||
|
@ -77,7 +77,7 @@ export async function handleRefreshToken() {
|
||||
}
|
||||
else {
|
||||
// 刷新失败,退出
|
||||
await authStore.resetAuthStore()
|
||||
await authStore.logOut()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@ export const useAuthStore = defineStore('auth-store', {
|
||||
},
|
||||
actions: {
|
||||
/* 登录退出,重置用户信息等 */
|
||||
async resetAuthStore() {
|
||||
async logOut() {
|
||||
const route = unref(router.currentRoute)
|
||||
// 清除本地缓存
|
||||
this.clearAuthStorage()
|
||||
|
@ -41,7 +41,7 @@ export const useRouteStore = defineStore('route-store', {
|
||||
|
||||
if (!userInfo || !userInfo.id) {
|
||||
const authStore = useAuthStore()
|
||||
authStore.resetAuthStore()
|
||||
authStore.logOut()
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user