mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
fix: 使正确显示右上方登录账号名
Signed-off-by: 吴医生 <draculakkk@hotmail.com>
This commit is contained in:
parent
b0cb3addbd
commit
104551b600
@ -27,7 +27,9 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { h, ref } from 'vue'
|
import { h, ref } from 'vue'
|
||||||
import { NAvatar, NText } from 'naive-ui'
|
import { NAvatar, NText } from 'naive-ui'
|
||||||
import { renderIcon } from '@/utils'
|
import { renderIcon, getLocalStorage } from '@/utils'
|
||||||
|
import { SystemStoreEnum, SystemStoreUserInfoEnum } from '@/store/modules/systemStore/systemStore.d'
|
||||||
|
import { StorageEnum } from '@/enums/storageEnum'
|
||||||
import { logout, renderLang } from '@/utils'
|
import { logout, renderLang } from '@/utils'
|
||||||
import { GoSystemSet } from '@/components/GoSystemSet/index'
|
import { GoSystemSet } from '@/components/GoSystemSet/index'
|
||||||
import { GoSystemInfo } from '@/components/GoSystemInfo/index'
|
import { GoSystemInfo } from '@/components/GoSystemInfo/index'
|
||||||
@ -64,7 +66,17 @@ const renderUserInfo = () => {
|
|||||||
}),
|
}),
|
||||||
h('div', null, [
|
h('div', null, [
|
||||||
h('div', null, [
|
h('div', null, [
|
||||||
h(NText, { depth: 2 }, { default: () => '奔跑的面条' })
|
h(NText, { depth: 2 }, {
|
||||||
|
default: () => {
|
||||||
|
const info = getLocalStorage(StorageEnum.GO_SYSTEM_STORE)
|
||||||
|
if (info) {
|
||||||
|
return info[SystemStoreEnum.USER_INFO][SystemStoreUserInfoEnum.USER_NAME];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return 'admin';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
]
|
]
|
||||||
@ -137,4 +149,4 @@ const handleSelect = (key: string) => {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transform: scale(0.7);
|
transform: scale(0.7);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
x
Reference in New Issue
Block a user