Browse Source

通過注釋隱藏圖標,個人中心,賬戶設置,切換部門

dev
kilo 3 years ago
parent
commit
db03501aa5
  1. 48
      src/components/tools/UserMenu.vue

48
src/components/tools/UserMenu.vue

@ -2,9 +2,9 @@
<div class="user-wrapper" :class="theme"> <div class="user-wrapper" :class="theme">
<!-- update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航 --> <!-- update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
<!-- update-begin author:sunjianlei date:20191@20 for: 解决全局样式冲突的问题 --> <!-- update-begin author:sunjianlei date:20191@20 for: 解决全局样式冲突的问题 -->
<span class="action" @click="showClick"> <!-- <span class="action" @click="showClick">-->
<a-icon type="search"></a-icon> <!-- <a-icon type="search"></a-icon>-->
</span> <!-- </span>-->
<!-- update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件在手机端呈现出弹出框 --> <!-- update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件在手机端呈现出弹出框 -->
<component :is="searchMenuComp" v-show="searchMenuVisible || isMobile()" class="borders" :visible="searchMenuVisible" title="搜索菜单" :footer="null" @cancel="searchMenuVisible=false"> <component :is="searchMenuComp" v-show="searchMenuVisible || isMobile()" class="borders" :visible="searchMenuVisible" title="搜索菜单" :footer="null" @cancel="searchMenuVisible=false">
<a-select <a-select
@ -26,11 +26,11 @@
<!-- update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件在手机端呈现出弹出框 --> <!-- update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件在手机端呈现出弹出框 -->
<!-- update-end author:sunjianlei date:20191220 for: 解决全局样式冲突的问题 --> <!-- update-end author:sunjianlei date:20191220 for: 解决全局样式冲突的问题 -->
<!-- update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航 --> <!-- update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
<span class="action"> <!-- <span class="action">-->
<a class="logout_title" target="_blank" href="http://doc.jeecg.com"> <!-- <a class="logout_title" target="_blank" href="http://doc.jeecg.com">-->
<a-icon type="question-circle-o"></a-icon> <!-- <a-icon type="question-circle-o"></a-icon>-->
</a> <!-- </a>-->
</span> <!-- </span>-->
<header-notice class="action"/> <header-notice class="action"/>
<a-dropdown> <a-dropdown>
<span class="action action-full ant-dropdown-link user-dropdown-menu"> <span class="action action-full ant-dropdown-link user-dropdown-menu">
@ -38,18 +38,18 @@
<span v-if="isDesktop()">欢迎您{{ nickname() }}</span> <span v-if="isDesktop()">欢迎您{{ nickname() }}</span>
</span> </span>
<a-menu slot="overlay" class="user-dropdown-menu-wrapper"> <a-menu slot="overlay" class="user-dropdown-menu-wrapper">
<a-menu-item key="0"> <!-- <a-menu-item key="0">-->
<router-link :to="{ name: 'account-center' }"> <!-- <router-link :to="{ name: 'account-center' }">-->
<a-icon type="user"/> <!-- <a-icon type="user"/>-->
<span>个人中心</span> <!-- <span>个人中心</span>-->
</router-link> <!-- </router-link>-->
</a-menu-item> <!-- </a-menu-item>-->
<a-menu-item key="1"> <!-- <a-menu-item key="1">-->
<router-link :to="{ name: 'account-settings-base' }"> <!-- <router-link :to="{ name: 'account-settings-base' }">-->
<a-icon type="setting"/> <!-- <a-icon type="setting"/>-->
<span>账户设置</span> <!-- <span>账户设置</span>-->
</router-link> <!-- </router-link>-->
</a-menu-item> <!-- </a-menu-item>-->
<a-menu-item key="3" @click="systemSetting"> <a-menu-item key="3" @click="systemSetting">
<a-icon type="tool"/> <a-icon type="tool"/>
<span>系统设置</span> <span>系统设置</span>
@ -58,10 +58,10 @@
<a-icon type="setting"/> <a-icon type="setting"/>
<span>密码修改</span> <span>密码修改</span>
</a-menu-item> </a-menu-item>
<a-menu-item key="5" @click="updateCurrentDepart"> <!-- <a-menu-item key="5" @click="updateCurrentDepart">-->
<a-icon type="cluster"/> <!-- <a-icon type="cluster"/>-->
<span>切换部门</span> <!-- <span>切换部门</span>-->
</a-menu-item> <!-- </a-menu-item>-->
<a-menu-item key="6" @click="clearCache"> <a-menu-item key="6" @click="clearCache">
<a-icon type="sync"/> <a-icon type="sync"/>
<span>清理缓存</span> <span>清理缓存</span>

Loading…
Cancel
Save