From fdf64a6f08866788352fdd9a058364b74fa0c083 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期四, 14 三月 2024 14:46:34 +0800 Subject: [PATCH] !90 feat: EasyRetry Server 扩展模块 Merge pull request !90 from dhb52/dev --- src/views/system/user/profile/index.vue | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/views/system/user/profile/index.vue b/src/views/system/user/profile/index.vue index 75e1fde..0c8b527 100644 --- a/src/views/system/user/profile/index.vue +++ b/src/views/system/user/profile/index.vue @@ -27,7 +27,7 @@ </li> <li class="list-group-item"> <svg-icon icon-class="tree" />鎵�灞為儴闂� - <div v-if="state.user.dept" class="pull-right">{{ state.user.dept.deptName }} / {{ state.postGroup }}</div> + <div v-if="state.user.deptName" class="pull-right">{{ state.user.deptName }} / {{ state.postGroup }}</div> </li> <li class="list-group-item"> <svg-icon icon-class="peoples" />鎵�灞炶鑹� @@ -72,9 +72,16 @@ import ThirdParty from './thirdParty.vue'; import { getAuthList } from '@/api/system/social/auth'; import { getUserProfile } from '@/api/system/user'; +import { UserVO } from '@/api/system/user/types'; const activeTab = ref('userinfo'); -const state = ref<Record<string, any>>({ +interface State { + user: Partial<UserVO>; + roleGroup: string; + postGroup: string; + auths: any; +} +const state = ref<State>({ user: {}, roleGroup: '', postGroup: '', -- Gitblit v1.9.3