From 41f3d37db102e87fceb3f49eb47ae38747decc43 Mon Sep 17 00:00:00 2001
From: LiuHao <liuhaoai545@gmail.com>
Date: 星期一, 15 四月 2024 14:00:39 +0800
Subject: [PATCH] update 优化首页打开topNav不展开菜单问题
---
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