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