From 4aa42f5c20d56661a3d7dbaad8a9d0a21bbb5f73 Mon Sep 17 00:00:00 2001 From: bleachtred <bleachtred@163.com> Date: 星期四, 18 四月 2024 11:29:57 +0800 Subject: [PATCH] fix 角色必填*号 --- 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