1
2
3
4
5
6
7
8
<template>
<div class="user-wrapper" :class="theme">
<!-- 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>
<!-- update-begin author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框 -->
谭毅彬
authored
about a year ago
9
10
11
12
13
<component
:is="searchMenuComp"
v-show="searchMenuVisible || isMobile()"
class="borders"
:visible="searchMenuVisible"
14
:title="$t('system.searchMenu')"
谭毅彬
authored
about a year ago
15
16
17
:footer="null"
@cancel="searchMenuVisible = false"
>
18
19
20
21
<a-select
class="search-input"
showSearch
:showArrow="false"
22
:placeholder="$t('system.searchMenu')"
23
24
optionFilterProp="children"
:filterOption="filterOption"
谭毅彬
authored
about a year ago
25
26
27
:open="isMobile() ? true : null"
:getPopupContainer="node => node.parentNode"
:style="isMobile() ? { width: '100%', marginBottom: '50px' } : {}"
28
29
30
@change="searchMethods"
@blur="hiddenClick"
>
谭毅彬
authored
about a year ago
31
<a-select-option v-for="(site, index) in searchMenuOptions" :key="index" :value="site.id"
32
>{{ site.meta.title }}
33
</a-select-option>
34
35
36
37
38
</a-select>
</component>
<!-- update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框 -->
<!-- update-end author:sunjianlei date:20191220 for: 解决全局样式冲突的问题 -->
<!-- update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航 -->
39
40
41
42
43
<!-- <span class="action">-->
<!-- <a class="logout_title" target="_blank" href="http://doc.jeecg.com">-->
<!-- <a-icon type="question-circle-o"></a-icon>-->
<!-- </a>-->
<!-- </span>-->
44
<header-notice class="action"/>
45
46
<a-dropdown>
<span class="action action-full ant-dropdown-link user-dropdown-menu">
47
48
<a-avatar class="avatar" size="small" :src="getAvatar()"/>
<span v-if="isDesktop()" style="padding: 0px 0px 0px 10px;">{{ $t('system.welcome') }},{{ nickname() }}</span>
49
50
</span>
<a-menu slot="overlay" class="user-dropdown-menu-wrapper">
51
<!-- <a-menu-item key="0">
52
53
54
55
<router-link :to="{ name: 'account-center' }">
<a-icon type="user"/>
<span>个人中心</span>
</router-link>
56
</a-menu-item> -->
57
<!-- <a-menu-item key="1">
58
59
60
61
<router-link :to="{ name: 'account-settings-base' }">
<a-icon type="setting"/>
<span>账户设置</span>
</router-link>
62
</a-menu-item> -->
63
<a-menu-item key="3" @click="systemSetting">
64
65
<a-icon type="tool"/>
<span>{{ $t('system.systemSettings') }}</span>
66
67
</a-menu-item>
<a-menu-item key="4" @click="updatePassword">
68
69
<a-icon type="setting"/>
<span>{{ $t('system.passwordChange') }} </span>
70
</a-menu-item>
71
<!-- <a-menu-item key="5" @click="updateCurrentDepart">
72
73
<a-icon type="cluster"/>
<span>切换部门</span>
74
</a-menu-item> -->
75
<a-menu-item key="6" @click="clearCache">
76
77
<a-icon type="sync"/>
<span>{{ $t('system.clearCache') }}</span>
78
</a-menu-item>
谭毅彬
authored
about a year ago
79
<a-menu-item key="7" @click="downWord">
80
81
<a-icon type="download"/>
<span>{{ $t('system.downloadOperationManual') }}</span>
谭毅彬
authored
about a year ago
82
83
84
85
</a-menu-item>
<!-- <a @click="downWord" style="height:59;line-height:59px;color: #d71345" v-if="manual === 'desktop'"> WMS操作手册</a> -->
86
87
88
89
90
91
92
93
94
95
96
<!-- <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>-->
97
98
99
100
</a-menu>
</a-dropdown>
<span class="action">
<a class="logout_title" href="javascript:;" @click="handleLogout">
101
102
<a-icon type="logout"/>
<span v-if="isDesktop()"> {{ $t('system.logout') }}</span>
103
104
105
106
</a>
</span>
<user-password ref="userPassword"></user-password>
<depart-select ref="departSelect" :closable="true" title="部门切换"></depart-select>
107
<setting-drawer ref="settingDrawer" :closable="true" :title="$t('system.systemSettings')"></setting-drawer>
108
109
110
111
</div>
</template>
<script>
112
113
import HeaderNotice from './HeaderNotice'
import UserPassword from './UserPassword'
谭毅彬
authored
about a year ago
114
import SettingDrawer from '@/components/setting/SettingDrawer'
115
import DepartSelect from './DepartSelect'
116
117
118
119
import {translateDistItems} from '@/api/api'
import {mapActions, mapGetters, mapState} from 'vuex'
import {mixinDevice} from '@/utils/mixin.js'
import {downFile, getAction, getFileAccessHttpUrl} from '@/api/manage'
120
import Vue from 'vue'
121
import {UI_CACHE_DB_DICT_DATA, UI_CACHE_TRANSLATE_DICT_DATA} from '@/store/mutation-types'
122
123
export default {
谭毅彬
authored
about a year ago
124
name: 'UserMenu',
125
126
127
128
129
130
131
132
mixins: [mixinDevice],
data() {
return {
// update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
searchMenuOptions: [],
searchMenuComp: 'span',
searchMenuVisible: false,
// update-begin author:sunjianlei date:20200219 for: 头部菜单搜索规范命名 --------------
谭毅彬
authored
about a year ago
133
134
135
url: {
downLoad: '/sys/common/downLoad'
}
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
}
},
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()
163
}
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
}
},
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'
谭毅彬
authored
about a year ago
180
181
}
}
182
183
184
// update-end author:sunjianlei date:20200219 for: 菜单搜索改为动态组件,在手机端呈现出弹出框
},
methods: {
185
/* update_begin author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
186
187
showClick() {
this.searchMenuVisible = true
188
},
189
190
hiddenClick() {
this.shows = false
191
},
谭毅彬
authored
about a year ago
192
downWord() {
193
194
// var fileName = '华恒WMS4操作说明书.doc'
let fileName = this.$t('system.userManualForHuaHengWMS4') + '.doc'
195
196
let language = this.$ls.get('language')
return downFile(this.url.downLoad, {language: language}).then(data => {
197
this.$message.info( this.$t('system.userManualForHuaHengWMS4') + " " + this.$t('system.startDownloading') )
谭毅彬
authored
about a year ago
198
if (!data || data.size === 0) {
199
this.$message.error(this.$('system.fileDownloadFailed'))
谭毅彬
authored
about a year ago
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
return
}
if (typeof window.navigator.msSaveBlob !== 'undefined') {
window.navigator.msSaveBlob(new Blob([data]), fileName)
} else {
let url = window.URL.createObjectURL(new Blob([data]))
let link = document.createElement('a')
link.style.display = 'none'
link.href = url
link.setAttribute('download', fileName)
document.body.appendChild(link)
link.click()
document.body.removeChild(link) //下载完成移除元素
window.URL.revokeObjectURL(url) //释放掉blob对象
}
})
},
217
/* update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
谭毅彬
authored
about a year ago
218
219
...mapActions(['Logout']),
...mapGetters(['nickname', 'avatar', 'userInfo']),
220
221
getAvatar() {
return getFileAccessHttpUrl(this.avatar())
222
},
223
224
handleLogout() {
const that = this
225
226
this.$confirm({
227
228
title: this.$t('system.reminder'),
content: this.$t('system.logoutMessage'),
229
onOk() {
谭毅彬
authored
about a year ago
230
231
232
233
234
235
236
237
238
239
240
241
242
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
})
243
})
244
},
245
246
onCancel() {
}
谭毅彬
authored
about a year ago
247
})
248
249
250
251
252
253
254
255
256
257
258
259
260
261
},
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) {
谭毅彬
authored
about a year ago
262
if (!i.hidden && 'layouts/RouteView' !== i.component) {
263
arr.push(i)
264
}
265
266
if (i.children && i.children.length > 0) {
this.searchMenus(arr, i.children)
267
268
}
}
269
270
271
272
273
274
275
276
277
278
279
},
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 {
280
this.$router.push({path: route.path})
281
282
283
284
285
286
287
288
}
//update-end-author:sunjianlei date:20220111 for: 【JTC-702】【菜单搜索】菜单搜索里点击跳转的菜单,无法将Token信息传递过去
this.searchMenuVisible = false
},
// update_end author:sunjianlei date:20191230 for: 解决外部链接打开失败的问题
/*update_end author:zhaoxin date:20191129 for: 做头部菜单栏导航*/
/*update_begin author:liushaoqian date:20200507 for: 刷新缓存*/
clearCache() {
谭毅彬
authored
about a year ago
289
290
291
getAction('sys/dict/refleshCache')
.then(res => {
if (res.success) {
谭毅彬
authored
about a year ago
292
293
294
295
296
297
getAction('sys/dict/querySysTranslateDictItems').then(res => {
if (res.success) {
Vue.ls.remove(UI_CACHE_TRANSLATE_DICT_DATA)
Vue.ls.set(UI_CACHE_TRANSLATE_DICT_DATA, res.result, 7 * 24 * 60 * 60 * 1000)
}
})
谭毅彬
authored
about a year ago
298
299
300
301
//重新加载缓存
getAction('sys/dict/queryAllDictItems').then(res => {
if (res.success) {
Vue.ls.remove(UI_CACHE_DB_DICT_DATA)
谭毅彬
authored
about a year ago
302
303
304
// 翻译数据字典
const allDictItems = translateDistItems(res.result);
Vue.ls.set(UI_CACHE_DB_DICT_DATA, allDictItems, 7 * 24 * 60 * 60 * 1000)
谭毅彬
authored
about a year ago
305
306
}
})
307
this.$message.success(this.$t('system.cacheRefreshed'))
谭毅彬
authored
about a year ago
308
309
310
}
})
.catch(e => {
311
this.$message.warn(this.$t('system.cacheRefreshFailed'))
谭毅彬
authored
about a year ago
312
313
console.log('刷新失败', e)
})
314
}
315
/*update_end author:liushaoqian date:20200507 for: 刷新缓存*/
316
}
317
}
318
319
320
</script>
<style lang="less" scoped>
321
322
323
324
325
/* update_begin author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
/* update-begin author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
.user-wrapper .search-input {
width: 180px;
color: inherit;
326
327
328
329
330
331
/deep/ .ant-select-selection {
background-color: inherit;
border: 0;
border-bottom: 1px solid white;
谭毅彬
authored
about a year ago
332
333
&__placeholder,
&__field__placeholder {
334
color: inherit;
335
336
}
}
337
338
339
340
}
/* update-end author:sunjianlei date:20191220 for: 解决全局样式冲突问题 */
/* update_end author:zhaoxin date:20191129 for: 让搜索框颜色能随主题颜色变换*/
341
342
343
</style>
<style scoped>
344
345
346
347
.logout_title {
color: inherit;
text-decoration: none;
}
348
</style>