Blame view

ant-design-vue-jeecg/src/components/tools/UserMenu.vue 8.78 KB
1
<template>
2
  <div class="user-wrapper" :class="theme">
3
4
5
6
7
    <!-- update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
    <!-- update-begin author:sunjianlei date:20191@20 for: 解决全局样式冲突的问题 -->
    <span class="action" @click="showClick">
      <a-icon type="search"></a-icon>
    </span>
8
9
    <!-- update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框 -->
    <component :is="searchMenuComp" v-show="searchMenuVisible || isMobile()" class="borders" :visible="searchMenuVisible" title="搜索菜单" :footer="null" @cancel="searchMenuVisible=false">
10
11
12
13
14
15
16
      <a-select
        class="search-input"
        showSearch
        :showArrow="false"
        placeholder="搜索菜单"
        optionFilterProp="children"
        :filterOption="filterOption"
17
18
19
        :open="isMobile()?true:null"
        :getPopupContainer="(node) => node.parentNode"
        :style="isMobile()?{width: '100%',marginBottom:'50px'}:{}"
20
21
22
        @change="searchMethods"
        @blur="hiddenClick"
      >
23
        <a-select-option v-for="(site,index) in searchMenuOptions" :key="index" :value="site.id">{{site.meta.title}}</a-select-option>
24
      </a-select>
25
26
27
    </component>
    <!-- update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框 -->
    <!-- update-end author:sunjianlei date:20191220 for: 解决全局样式冲突的问题 -->
28
    <!-- update_end  author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
29
    <span class="action">
30
      <a class="logout_title" target="_blank" href="http://doc.jeecg.com">
31
32
        <a-icon type="question-circle-o"></a-icon>
      </a>
33
34
35
    </span>
    <header-notice class="action"/>
    <a-dropdown>
36
      <span class="action action-full ant-dropdown-link user-dropdown-menu">
37
        <a-avatar class="avatar" size="small" :src="getAvatar()"/>
38
        <span v-if="isDesktop()">欢迎您,{{ nickname() }}</span>
39
40
41
42
43
44
45
46
47
      </span>
      <a-menu slot="overlay" class="user-dropdown-menu-wrapper">
        <a-menu-item key="0">
          <router-link :to="{ name: 'account-center' }">
            <a-icon type="user"/>
            <span>个人中心</span>
          </router-link>
        </a-menu-item>
        <a-menu-item key="1">
48
          <router-link :to="{ name: 'account-settings-base' }">
49
50
51
52
            <a-icon type="setting"/>
            <span>账户设置</span>
          </router-link>
        </a-menu-item>
53
54
55
56
57
        <a-menu-item key="3"  @click="systemSetting">
           <a-icon type="tool"/>
           <span>系统设置</span>
        </a-menu-item>
        <a-menu-item key="4" @click="updatePassword">
58
59
60
          <a-icon type="setting"/>
          <span>密码修改</span>
        </a-menu-item>
61
        <a-menu-item key="5" @click="updateCurrentDepart">
62
63
64
          <a-icon type="cluster"/>
          <span>切换部门</span>
        </a-menu-item>
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
       <!-- <a-menu-item key="2" disabled>
          <a-icon type="setting"/>
          <span>测试</span>
        </a-menu-item>
        <a-menu-divider/>
        <a-menu-item key="3">
          <a href="javascript:;" @click="handleLogout">
            <a-icon type="logout"/>
            <span>退出登录</span>
          </a>
        </a-menu-item>-->
      </a-menu>
    </a-dropdown>
    <span class="action">
      <a class="logout_title" href="javascript:;" @click="handleLogout">
        <a-icon type="logout"/>
81
        <span v-if="isDesktop()">&nbsp;退出登录</span>
82
83
      </a>
    </span>
84
    <user-password ref="userPassword"></user-password>
85
    <depart-select ref="departSelect" :closable="true" title="部门切换"></depart-select>
86
    <setting-drawer ref="settingDrawer" :closable="true" title="系统设置"></setting-drawer>
87
88
89
90
91
  </div>
</template>

<script>
  import HeaderNotice from './HeaderNotice'
92
  import UserPassword from './UserPassword'
93
  import SettingDrawer from "@/components/setting/SettingDrawer";
94
  import DepartSelect from './DepartSelect'
95
  import { mapActions, mapGetters,mapState } from 'vuex'
96
  import { mixinDevice } from '@/utils/mixin.js'
97
  import { getFileAccessHttpUrl } from "@/api/manage"
98
99
100
  export default {
    name: "UserMenu",
101
    mixins: [mixinDevice],
102
103
    data(){
      return{
104
105
106
107
108
        // update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
        searchMenuOptions:[],
        searchMenuComp: 'span',
        searchMenuVisible: false,
        // update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
109
110
      }
    },
111
    components: {
112
      HeaderNotice,
113
      UserPassword,
114
115
      DepartSelect,
      SettingDrawer
116
    },
117
118
119
120
121
122
123
    props: {
      theme: {
        type: String,
        required: false,
        default: 'dark'
      }
    },
124
125
126
127
    /* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
    created() {
      let lists = []
      this.searchMenus(lists,this.permissionMenuList)
128
      this.searchMenuOptions=[...lists]
129
130
131
132
133
134
135
136
137
    },
    computed: {
      ...mapState({
        // 后台菜单
        permissionMenuList: state => state.user.permissionList

      })
    },
    /* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
138
139
140
141
142
143
144
145
146
147
148
    watch: {
      // update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
      device: {
        immediate: true,
        handler() {
          this.searchMenuVisible = false
          this.searchMenuComp = this.isMobile() ? 'a-modal' : 'span'
        },
      },
      // update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
    },
149
    methods: {
150
      /* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
151
152
      showClick() {
        this.searchMenuVisible = true
153
154
155
156
157
      },
      hiddenClick(){
        this.shows = false
      },
      /* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
158
      ...mapActions(["Logout"]),
159
      ...mapGetters(["nickname", "avatar","userInfo"]),
160
      getAvatar(){
161
        return getFileAccessHttpUrl(this.avatar())
162
163
164
165
166
167
168
169
170
      },
      handleLogout() {
        const that = this

        this.$confirm({
          title: '提示',
          content: '真的要注销登录吗 ?',
          onOk() {
            return that.Logout({}).then(() => {
171
172
                window.location.href="/";
              //window.location.reload()
173
174
175
176
177
178
179
180
181
182
183
            }).catch(err => {
              that.$message.error({
                title: '错误',
                description: err.message
              })
            })
          },
          onCancel() {
          },
        });
      },
184
185
186
187
      updatePassword(){
        let username = this.userInfo().username
        this.$refs.userPassword.show(username)
      },
188
189
      updateCurrentDepart(){
        this.$refs.departSelect.show()
190
191
192
      },
      systemSetting(){
        this.$refs.settingDrawer.showDrawer()
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
      },
      /* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
      searchMenus(arr,menus){
        for(let i of menus){
          if(!i.hidden && "layouts/RouteView"!==i.component){
           arr.push(i)
          }
          if(i.children&& i.children.length>0){
            this.searchMenus(arr,i.children)
          }
        }
      },
      filterOption(input, option) {
        return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
      },
208
209
210
211
212
213
214
215
216
      // update_begin author:sunjianlei date:20191230 for: 解决外部链接打开失败的问题
      searchMethods(value) {
        let route = this.searchMenuOptions.filter(item => item.id === value)[0]
        if (route.meta.internalOrExternal === true || route.component.includes('layouts/IframePageView')) {
          window.open(route.meta.url, '_blank')
        } else {
          this.$router.push({ path: route.path })
        }
        this.searchMenuVisible = false
217
      }
218
      // update_end author:sunjianlei date:20191230 for: 解决外部链接打开失败的问题
219
      /*update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
220
221
222
223
    }
  }
</script>
224
<style lang="less" scoped>
225
226
227
228
  /* update_begin author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
  /* update-begin author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
  .user-wrapper .search-input {
    width: 180px;
229
    color: inherit;
230
231
    /deep/ .ant-select-selection {
232
233
234
235
236
      background-color: inherit;
      border: 0;
      border-bottom: 1px solid white;
      &__placeholder, &__field__placeholder {
        color: inherit;
237
      }
238
    }
239
240
241
242
243
  }
  /* update-end author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
  /* update_end author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
</style>
244
<style scoped>
245
246
247
  .logout_title {
    color: inherit;
    text-decoration: none;
248
249
  }
</style>