|
1
2
3
4
|
<template>
<div class="user-wrapper" :class="theme">
<!-- update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
<!-- update-begin author:sunjianlei date:20191@20 for: 解决全局样式冲突的问题 -->
|
|
5
|
<!-- <span class="action" @click="showClick">
|
|
6
|
<a-icon type="search"></a-icon>
|
|
7
|
</span> -->
|
|
8
|
<!-- update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框 -->
|
|
9
|
<!-- <component :is="searchMenuComp" v-show="searchMenuVisible || isMobile()" class="borders"
|
|
10
|
:visible="searchMenuVisible" title="搜索菜单" :footer="null" @cancel="searchMenuVisible=false">
|
|
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<a-select
class="search-input"
showSearch
:showArrow="false"
placeholder="搜索菜单"
optionFilterProp="children"
:filterOption="filterOption"
:open="isMobile()?true:null"
:getPopupContainer="(node) => node.parentNode"
:style="isMobile()?{width: '100%',marginBottom:'50px'}:{}"
@change="searchMethods"
@blur="hiddenClick"
>
|
|
24
25
|
<a-select-option v-for="(site,index) in searchMenuOptions" :key="index" :value="site.id">{{ site.meta.title }}
</a-select-option>
|
|
26
|
</a-select>
|
|
27
|
</component> -->
|
|
28
29
30
|
<!-- update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框 -->
<!-- update-end author:sunjianlei date:20191220 for: 解决全局样式冲突的问题 -->
<!-- update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
|
|
31
32
33
34
35
|
<!-- <span class="action">-->
<!-- <a class="logout_title" target="_blank" href="http://doc.jeecg.com">-->
<!-- <a-icon type="question-circle-o"></a-icon>-->
<!-- </a>-->
<!-- </span>-->
|
|
36
|
<!-- <header-notice class="action"/> -->
|
|
37
38
|
<a-dropdown>
<span class="action action-full ant-dropdown-link user-dropdown-menu">
|
|
39
40
|
<a-avatar class="avatar" size="small" :src="getAvatar()" />
<span v-if="isDesktop()">{{ $t('system.welcome') }} {{ nickname() }}</span>
|
|
41
42
|
</span>
<a-menu slot="overlay" class="user-dropdown-menu-wrapper">
|
|
43
|
<a-menu-item key="3" @click="systemSetting">
|
|
44
45
|
<a-icon type="tool" />
<span>{{ $t('system.systemSettings') }}</span>
|
|
46
47
|
</a-menu-item>
<a-menu-item key="4" @click="updatePassword">
|
|
48
49
|
<a-icon type="setting" />
<span>{{ $t('system.passwordChange') }}</span>
|
|
50
51
|
</a-menu-item>
<a-menu-item key="6" @click="clearCache">
|
|
52
53
|
<a-icon type="sync" />
<span>{{ $t('system.clearCache') }}</span>
|
|
54
55
56
57
58
|
</a-menu-item>
</a-menu>
</a-dropdown>
<span class="action">
<a class="logout_title" href="javascript:;" @click="handleLogout">
|
|
59
|
<span v-if="isDesktop()"><a-icon type="logout" /> {{ $t('system.logout') }}</span>
|
|
60
61
62
63
64
65
66
67
68
|
</a>
</span>
<user-password ref="userPassword"></user-password>
<depart-select ref="departSelect" :closable="true" title="部门切换"></depart-select>
<setting-drawer ref="settingDrawer" :closable="true" title="系统设置"></setting-drawer>
</div>
</template>
<script>
|
|
69
70
|
import HeaderNotice from './HeaderNotice'
import UserPassword from './UserPassword'
|
|
71
|
import SettingDrawer from '@/components/setting/SettingDrawer'
|
|
72
|
import DepartSelect from './DepartSelect'
|
|
73
74
75
|
import { mapActions, mapGetters, mapState } from 'vuex'
import { mixinDevice } from '@/utils/mixin.js'
import { getFileAccessHttpUrl, getAction } from '@/api/manage'
|
|
76
|
import Vue from 'vue'
|
|
77
|
import { UI_CACHE_DB_DICT_DATA } from '@/store/mutation-types'
|
|
78
|
|
|
79
|
export default {
|
|
80
|
name: 'UserMenu',
|
|
81
82
83
84
85
86
|
mixins: [mixinDevice],
data() {
return {
// update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
searchMenuOptions: [],
searchMenuComp: 'span',
|
|
87
|
searchMenuVisible: false
|
|
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
// update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
}
},
components: {
HeaderNotice,
UserPassword,
DepartSelect,
SettingDrawer
},
props: {
theme: {
type: String,
required: false,
default: 'dark'
}
},
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
created() {
let lists = []
this.searchMenus(lists, this.permissionMenuList)
this.searchMenuOptions = [...lists]
},
mounted() {
//如果是单点登录模式
if (process.env.VUE_APP_SSO == 'true') {
let depart = this.userInfo().orgCode
if (!depart) {
this.updateCurrentDepart()
|
|
116
|
}
|
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
}
},
computed: {
...mapState({
// 后台菜单
permissionMenuList: state => state.user.permissionList
})
},
/* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
watch: {
// update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
device: {
immediate: true,
handler() {
this.searchMenuVisible = false
this.searchMenuComp = this.isMobile() ? 'a-modal' : 'span'
|
|
133
134
|
}
}
|
|
135
136
137
|
// update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
},
methods: {
|
|
138
|
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
|
|
139
140
|
showClick() {
this.searchMenuVisible = true
|
|
141
|
},
|
|
142
143
|
hiddenClick() {
this.shows = false
|
|
144
145
|
},
/* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
|
|
146
147
|
...mapActions(['Logout']),
...mapGetters(['nickname', 'avatar', 'userInfo']),
|
|
148
149
|
getAvatar() {
return getFileAccessHttpUrl(this.avatar())
|
|
150
|
},
|
|
151
152
|
handleLogout() {
const that = this
|
|
153
|
|
|
154
|
this.$confirm({
|
|
155
156
|
title: this.$t('system.message'),
content: this.$t('system.logoutMessage'),
|
|
157
|
onOk() {
|
|
158
159
160
161
162
163
164
165
166
167
168
169
170
|
return that
.Logout({})
.then(() => {
// update-begin author:scott date:20211223 for:【JTC-198】退出登录体验不好
//that.$router.push({ path: '/user/login' });
window.location.reload()
// update-end author:scott date:20211223 for:【JTC-198】退出登录体验不好
})
.catch(err => {
that.$message.error({
title: '错误',
description: err.message
})
|
|
171
|
})
|
|
172
|
},
|
|
173
174
|
onCancel() {}
})
|
|
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
},
updatePassword() {
let username = this.userInfo().username
this.$refs.userPassword.show(username)
},
updateCurrentDepart() {
this.$refs.departSelect.show()
},
systemSetting() {
this.$refs.settingDrawer.showDrawer()
},
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
searchMenus(arr, menus) {
for (let i of menus) {
|
|
189
|
if (!i.hidden && 'layouts/RouteView' !== i.component) {
|
|
190
|
arr.push(i)
|
|
191
|
}
|
|
192
193
|
if (i.children && i.children.length > 0) {
this.searchMenus(arr, i.children)
|
|
194
195
|
}
}
|
|
196
197
198
199
200
201
202
203
204
205
206
|
},
filterOption(input, option) {
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
},
// update_begin author:sunjianlei date:20191230 for: 解决外部链接打开失败的问题
searchMethods(value) {
let route = this.searchMenuOptions.filter(item => item.id === value)[0]
//update-begin-author:sunjianlei date:20220111 for: 【JTC-702】【菜单搜索】菜单搜索里点击跳转的菜单,无法将Token信息传递过去
if (route.component.includes('layouts/IframePageView')) {
this.$router.push(route)
} else {
|
|
207
|
this.$router.push({ path: route.path })
|
|
208
209
210
211
212
|
}
//update-end-author:sunjianlei date:20220111 for: 【JTC-702】【菜单搜索】菜单搜索里点击跳转的菜单,无法将Token信息传递过去
this.searchMenuVisible = false
},
clearCache() {
|
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
|
getAction('sys/dict/refleshCache')
.then(res => {
if (res.success) {
//重新加载缓存
getAction('sys/dict/queryAllDictItems').then(res => {
if (res.success) {
Vue.ls.remove(UI_CACHE_DB_DICT_DATA)
Vue.ls.set(UI_CACHE_DB_DICT_DATA, res.result, 7 * 24 * 60 * 60 * 1000)
}
})
this.$message.success(this.$t('system.cacheRefreshed'))
}
})
.catch(e => {
this.$message.warn(this.$t('system.cacheRefreshFailed'))
})
|
|
229
|
}
|
|
230
|
/*update_end author:liushaoqian date:20200507 for: 刷新缓存*/
|
|
231
|
}
|
|
232
|
}
|
|
233
234
235
|
</script>
<style lang="less" scoped>
|
|
236
237
238
239
240
|
/* update_begin author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
/* update-begin author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
.user-wrapper .search-input {
width: 180px;
color: inherit;
|
|
241
|
|
|
242
243
244
245
246
|
/deep/ .ant-select-selection {
background-color: inherit;
border: 0;
border-bottom: 1px solid white;
|
|
247
248
|
&__placeholder,
&__field__placeholder {
|
|
249
|
color: inherit;
|
|
250
251
|
}
}
|
|
252
253
254
255
|
}
/* update-end author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
/* update_end author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
|
|
256
257
258
|
</style>
<style scoped>
|
|
259
260
261
262
|
.logout_title {
color: inherit;
text-decoration: none;
}
|
|
263
|
</style>
|