fix: 修复部分错误

This commit is contained in:
2024-11-15 22:05:29 +08:00
parent ce09f737c3
commit 5637ae50b9
3 changed files with 4 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ interface Options {
export interface LabelValueState {
label: string
value: any
extend?: string
extra?: string
}
/** 字典类型 */

View File

@@ -82,8 +82,8 @@ http.interceptors.response.use(
async onOk() {
NProgress.done()
const userStore = useUserStore()
userStore.logoutCallBack()
router.replace('/login')
await userStore.logoutCallBack()
await router.replace('/login')
},
})
} else {

View File

@@ -472,8 +472,7 @@ const onOauth = async (source: string) => {
margin-right: 10px;
}
.mode:hover,
.mode svg:hover {
.mode:hover {
background: rgba(var(--primary-6), 0.05);
border: 1px solid rgb(var(--primary-3));
color: rgb(var(--arcoblue-6));