|
1
|
<template>
|
|
2
|
<global-layout @dynamicRouterShow="dynamicRouterShow">
|
|
3
4
5
|
<!-- update-begin- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
<contextmenu :itemList="menuItemList" :visible.sync="menuVisible" style="z-index: 9999;" @select="onMenuSelect"/>
<!-- update-end- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
|
|
6
7
8
9
|
<a-tabs
@contextmenu.native="e => onContextmenu(e)"
v-if="multipage"
:active-key="activePage"
|
|
10
11
|
class="tab-layout-tabs"
style="height:52px"
|
|
12
13
14
|
:hide-add="true"
type="editable-card"
@change="changePage"
|
|
15
|
@tabClick="tabCallBack"
|
|
16
|
@edit="editPage">
|
|
17
|
<a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" :closable="!(page.meta.title=='首页')">
|
|
18
19
20
|
<span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span>
</a-tab-pane>
</a-tabs>
|
|
21
|
<div style="margin: 12px 12px 0;">
|
|
22
23
24
25
26
27
28
29
|
<!-- update-begin-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 -->
<keep-alive v-if="multipage">
<router-view v-if="reloadFlag"/>
</keep-alive>
<template v-else>
<router-view v-if="reloadFlag"/>
</template>
<!-- update-end-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 -->
|
|
30
|
</div>
|
|
31
32
33
|
<!-- update-begin-author:zyf date:20211129 for:qiankun 挂载子应用盒子 -->
<div id="content" class="app-view-box"></div>
<!-- update-end-author:zyf date:20211129 for: qiankun 挂载子应用盒子-->
|
|
34
35
36
37
38
39
|
</global-layout>
</template>
<script>
import GlobalLayout from '@/components/page/GlobalLayout'
import Contextmenu from '@/components/menu/Contextmenu'
|
|
40
|
import { mixin, mixinDevice } from '@/utils/mixin.js'
|
|
41
|
import { triggerWindowResizeEvent } from '@/utils/util'
|
|
42
|
import Vue from 'vue'
|
|
43
|
import { CACHE_INCLUDED_ROUTES } from '@/store/mutation-types'
|
|
44
|
import registerApps from "@/qiankun";
|
|
45
46
|
const indexKey = '/dashboard/analysis'
|
|
47
|
|
|
48
|
export default {
|
|
49
|
name: 'TabLayout',
|
|
50
51
52
53
|
components: {
GlobalLayout,
Contextmenu
},
|
|
54
55
|
mixins: [mixin, mixinDevice],
data() {
|
|
56
57
58
59
60
61
|
return {
pageList: [],
linkList: [],
activePage: '',
menuVisible: false,
menuItemList: [
|
|
62
|
{ key: '4', icon: 'reload', text: '刷 新' },
|
|
63
64
65
|
{ key: '1', icon: 'arrow-left', text: '关闭左侧' },
{ key: '2', icon: 'arrow-right', text: '关闭右侧' },
{ key: '3', icon: 'close', text: '关闭其它' }
|
|
66
67
|
],
reloadFlag:true
|
|
68
69
|
}
},
|
|
70
71
72
73
74
75
76
|
/* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用 ->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
provide(){
return{
closeCurrent:this.closeCurrent
}
},
/* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
|
|
77
|
computed: {
|
|
78
79
80
81
82
83
84
|
multipage() {
//判断如果是手机模式,自动切换为单页面模式
if (this.isMobile()) {
return false
} else {
return this.$store.state.app.multipage
}
|
|
85
86
|
}
},
|
|
87
88
|
created() {
if (this.$route.path != indexKey) {
|
|
89
|
this.addIndexToFirst()
|
|
90
|
}
|
|
91
92
93
94
95
96
|
// 复制一个route对象出来,不能影响原route
let currentRoute = Object.assign({}, this.$route)
currentRoute.meta = Object.assign({}, currentRoute.meta)
this.pageList.push(currentRoute)
this.linkList.push(currentRoute.fullPath)
this.activePage = currentRoute.fullPath
|
|
97
|
},
|
|
98
|
mounted() {
|
|
99
100
101
102
103
104
105
106
|
if (process.env.VUE_APP_QIANKUN == 'true') {
//update-begin-author:zyf date:20211129 for:qiankun 注册子应用
if (!window.qiankunStarted) {
window.qiankunStarted = true;
registerApps();
}
//update-end-author:zyf date:20211129 for:qiankun 注册子应用
}
|
|
107
|
},
|
|
108
|
watch: {
|
|
109
|
'$route': function(newRoute) {
|
|
110
|
//console.log("新的路由",newRoute)
|
|
111
112
113
|
this.activePage = newRoute.fullPath
if (!this.multipage) {
this.linkList = [newRoute.fullPath]
|
|
114
|
this.pageList = [Object.assign({},newRoute)]
|
|
115
116
117
|
// update-begin-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
} else if(indexKey==newRoute.fullPath) {
//首页时 判断是否缓存 没有缓存 刷新之
|
|
118
|
if (newRoute.meta.keepAlive === false) {
|
|
119
|
this.routeReload()
|
|
120
|
}
|
|
121
122
|
// update-end-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
}else if (this.linkList.indexOf(newRoute.fullPath) < 0) {
|
|
123
|
this.linkList.push(newRoute.fullPath)
|
|
124
|
this.pageList.push(Object.assign({},newRoute))
|
|
125
|
//// update-begin-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842
|
|
126
127
128
|
// if (newRoute.meta.keepAlive) {
// this.routeReload()
// }
|
|
129
|
//// update-end-author:sunjianlei date:20200103 for: 如果新增的页面配置了缓存路由,那么就强制刷新一遍 #842
|
|
130
131
|
} else if (this.linkList.indexOf(newRoute.fullPath) >= 0) {
let oldIndex = this.linkList.indexOf(newRoute.fullPath)
|
|
132
133
|
let oldPositionRoute = this.pageList[oldIndex]
this.pageList.splice(oldIndex, 1, Object.assign({},newRoute,{meta:oldPositionRoute.meta}))
|
|
134
135
|
}
},
|
|
136
137
|
'activePage': function(key) {
let index = this.linkList.lastIndexOf(key)
|
|
138
|
let waitRouter = this.pageList[index]
|
|
139
140
141
142
|
// 【TESTA-523】修复:不允许重复跳转路由异常
if (waitRouter.fullPath !== this.$route.fullPath) {
this.$router.push(Object.assign({}, waitRouter))
}
|
|
143
|
this.changeTitle(waitRouter.meta.title)
|
|
144
|
},
|
|
145
|
'multipage': function(newVal) {
|
|
146
147
148
149
150
|
if(this.reloadFlag){
if (!newVal) {
this.linkList = [this.$route.fullPath]
this.pageList = [this.$route]
}
|
|
151
|
}
|
|
152
153
154
155
156
157
158
159
|
},
// update-begin-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
device() {
if (this.multipage && this.linkList.indexOf(indexKey) === -1) {
this.addIndexToFirst()
}
},
// update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
|
|
160
161
|
},
methods: {
|
|
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
// update-begin-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
// 将首页添加到第一位
addIndexToFirst() {
this.pageList.splice(0, 0, {
name: 'dashboard-analysis',
path: indexKey,
fullPath: indexKey,
meta: {
icon: 'dashboard',
title: '首页'
}
})
this.linkList.splice(0, 0, indexKey)
},
// update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
// update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题
changeTitle(title) {
|
|
180
|
let projectTitle = "Jeecg-Boot 企业级低代码平台"
|
|
181
182
183
184
185
186
187
188
189
|
// 首页特殊处理
if (this.$route.path === indexKey) {
document.title = projectTitle
} else {
document.title = title + ' · ' + projectTitle
}
},
// update-end-author:sunjianlei date:20200120 for: 动态更改页面标题
|
|
190
|
changePage(key) {
|
|
191
192
|
this.activePage = key
},
|
|
193
194
|
tabCallBack() {
this.$nextTick(() => {
|
|
195
196
197
198
199
200
|
//update-begin-author:taoyan date: 20201211 for:【新版】online报错 JT-100
setTimeout(()=>{
//省市区组件里面给window绑定了个resize事件 导致切换页面的时候触发了他的resize,但是切换页面,省市区组件还没被销毁前就触发了该事件,导致控制台报错,加个延迟
triggerWindowResizeEvent()
},20)
//update-end-author:taoyan date: 20201211 for:【新版】online报错 JT-100
|
|
201
202
|
})
},
|
|
203
|
editPage(key, action) {
|
|
204
205
|
this[action](key)
},
|
|
206
207
|
remove(key) {
if (key == indexKey) {
|
|
208
209
210
211
212
213
214
|
this.$message.warning('首页不能关闭!')
return
}
if (this.pageList.length === 1) {
this.$message.warning('这是最后一页,不能再关闭了啦')
return
}
|
|
215
|
console.log("this.pageList ",this.pageList );
|
|
216
|
let removeRoute = this.pageList.filter(item => item.fullPath == key)
|
|
217
218
219
220
221
|
this.pageList = this.pageList.filter(item => item.fullPath !== key)
let index = this.linkList.indexOf(key)
this.linkList = this.linkList.filter(item => item !== key)
index = index >= this.linkList.length ? this.linkList.length - 1 : index
this.activePage = this.linkList[index]
|
|
222
223
224
225
226
227
228
229
230
231
232
233
|
//update-begin--Author:scott Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
//关闭页面则从缓存cache_included_routes中删除路由,下次点击菜单会重新加载页面
let cacheRouterArray = Vue.ls.get(CACHE_INCLUDED_ROUTES) || []
if (removeRoute && removeRoute[0]) {
let componentName = removeRoute[0].meta.componentName
console.log("key: ", key);
console.log("componentName: ", componentName);
if(cacheRouterArray.includes(componentName)){
cacheRouterArray.splice(cacheRouterArray.findIndex(item => item === componentName), 1)
Vue.ls.set(CACHE_INCLUDED_ROUTES, cacheRouterArray)
}
|
|
234
|
this.emitPageClosed(removeRoute[0])
|
|
235
236
237
|
}
//update-end--Author:scott Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
|
|
238
|
},
|
|
239
240
241
242
243
244
245
246
247
|
// 触发 page-closed (页面关闭)全局事件
emitPageClosed(closedRoute) {
this.$root.$emit('page-closed', {
closedRoute,
pageList: this.pageList,
linkList: this.linkList,
activePage: this.activePage
})
},
|
|
248
|
onContextmenu(e) {
|
|
249
250
251
252
253
254
|
const pagekey = this.getPageKey(e.target)
if (pagekey !== null) {
e.preventDefault()
this.menuVisible = true
}
},
|
|
255
|
getPageKey(target, depth) {
|
|
256
257
258
259
260
261
262
263
|
depth = depth || 0
if (depth > 2) {
return null
}
let pageKey = target.getAttribute('pagekey')
pageKey = pageKey || (target.previousElementSibling ? target.previousElementSibling.getAttribute('pagekey') : null)
return pageKey || (target.firstElementChild ? this.getPageKey(target.firstElementChild, ++depth) : null)
},
|
|
264
|
onMenuSelect(key, target) {
|
|
265
266
267
268
269
270
271
272
273
274
275
|
let pageKey = this.getPageKey(target)
switch (key) {
case '1':
this.closeLeft(pageKey)
break
case '2':
this.closeRight(pageKey)
break
case '3':
this.closeOthers(pageKey)
break
|
|
276
277
278
|
case '4':
this.routeReload()
break
|
|
279
280
281
282
|
default:
break
}
},
|
|
283
284
285
286
287
|
/* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
closeCurrent(){
this.remove(this.activePage);
},
/* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
|
|
288
|
closeOthers(pageKey) {
|
|
289
|
let index = this.linkList.indexOf(pageKey)
|
|
290
|
if (pageKey == indexKey || pageKey.indexOf('?ticke=')>=0) {
|
|
291
292
293
|
this.linkList = this.linkList.slice(index, index + 1)
this.pageList = this.pageList.slice(index, index + 1)
this.activePage = this.linkList[0]
|
|
294
295
|
} else {
let indexContent = this.pageList.slice(0, 1)[0]
|
|
296
297
|
this.linkList = this.linkList.slice(index, index + 1)
this.pageList = this.pageList.slice(index, index + 1)
|
|
298
|
this.linkList.unshift(indexContent.fullPath)
|
|
299
300
301
302
|
this.pageList.unshift(indexContent)
this.activePage = this.linkList[1]
}
},
|
|
303
304
|
closeLeft(pageKey) {
if (pageKey == indexKey) {
|
|
305
306
|
return
}
|
|
307
308
|
let tempList = [...this.pageList]
let indexContent = tempList.slice(0, 1)[0]
|
|
309
310
311
|
let index = this.linkList.indexOf(pageKey)
this.linkList = this.linkList.slice(index)
this.pageList = this.pageList.slice(index)
|
|
312
|
this.linkList.unshift(indexContent.fullPath)
|
|
313
314
315
316
317
|
this.pageList.unshift(indexContent)
if (this.linkList.indexOf(this.activePage) < 0) {
this.activePage = this.linkList[0]
}
},
|
|
318
|
closeRight(pageKey) {
|
|
319
320
321
322
323
324
|
let index = this.linkList.indexOf(pageKey)
this.linkList = this.linkList.slice(0, index + 1)
this.pageList = this.pageList.slice(0, index + 1)
if (this.linkList.indexOf(this.activePage < 0)) {
this.activePage = this.linkList[this.linkList.length - 1]
}
|
|
325
326
327
328
329
330
331
332
|
},
//update-begin-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title
dynamicRouterShow(key,title){
let keyIndex = this.linkList.indexOf(key)
if(keyIndex>=0){
let currRouter = this.pageList[keyIndex]
let meta = Object.assign({},currRouter.meta,{title:title})
this.pageList.splice(keyIndex, 1, Object.assign({},currRouter,{meta:meta}))
|
|
333
334
335
|
if (key === this.activePage) {
this.changeTitle(title)
}
|
|
336
|
}
|
|
337
|
},
|
|
338
|
//update-end-author:taoyan date:20190430 for:动态路由title显示配置的菜单title而不是其对应路由的title
|
|
339
340
341
342
343
344
345
346
347
348
|
//update-begin-author:taoyan date:20191008 for:路由刷新
routeReload(){
this.reloadFlag = false
let ToggleMultipage = "ToggleMultipage"
this.$store.dispatch(ToggleMultipage,false)
this.$nextTick(()=>{
this.$store.dispatch(ToggleMultipage,true)
this.reloadFlag = true
})
|
|
349
|
},
|
|
350
|
//update-end-author:taoyan date:20191008 for:路由刷新
|
|
351
352
353
354
|
//新增一个返回方法
excuteCallback(callback){
callback()
},
|
|
355
|
}
|
|
356
357
358
|
}
</script>
|
|
359
|
<style lang="less">
|
|
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
|
/*
* The following styles are auto-applied to elements with
* transition="page-transition" when their visibility is toggled
* by Vue.js.
*
* You can easily play with the page transition by editing
* these styles.
*/
.page-transition-enter {
opacity: 0;
}
.page-transition-leave-active {
opacity: 0;
}
.page-transition-enter .page-transition-container,
.page-transition-leave-active .page-transition-container {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
|
|
383
|
|
|
384
385
386
387
|
/*美化弹出Tab样式*/
.ant-tabs-nav-container {
margin-top: 4px;
}
|
|
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
/* 修改 ant-tabs 样式 */
.tab-layout-tabs.ant-tabs {
border-bottom: 1px solid #ccc;
border-left: 1px solid #ccc;
background-color: white;
padding: 0 20px;
.ant-tabs-bar {
margin: 4px 0 0;
border: none;
}
}
|
|
403
|
.tab-layout-tabs.ant-tabs {
|
|
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
|
&.ant-tabs-card .ant-tabs-tab {
padding: 0 24px !important;
background-color: white !important;
margin-right: 10px !important;
.ant-tabs-close-x {
width: 12px !important;
height: 12px !important;
opacity: 0 !important;
cursor: pointer !important;
font-size: 12px !important;
margin: 0 !important;
position: absolute;
top: 36%;
right: 6px;
}
&:hover .ant-tabs-close-x {
opacity: 1 !important;
}
}
}
|
|
431
|
.tab-layout-tabs.ant-tabs.ant-tabs-card > .ant-tabs-bar {
|
|
432
433
434
435
436
|
.ant-tabs-tab {
border: none !important;
border-bottom: 1px solid transparent !important;
}
.ant-tabs-tab-active {
|
|
437
|
border-color: @primary-color!important;
|
|
438
439
440
441
|
}
}
|
|
442
|
</style>
|