|
@ -27,7 +27,7 @@
|
27
|
27
|
import API from '@/api'
|
28
|
28
|
import { mapMutations } from 'vuex'
|
29
|
29
|
import { getRouteNameByUrl } from '@/utils'
|
30
|
|
import isNil from 'lodash/isNil'
|
|
30
|
import isEmpty from 'lodash/isEmpty'
|
31
|
31
|
export default {
|
32
|
32
|
data () {
|
33
|
33
|
return {
|
|
@ -63,9 +63,9 @@
|
63
|
63
|
if (/^\/n\/.*$/.test(route.path)) {
|
64
|
64
|
var tab = this.$store.state.contentTabs.filter(item => item.name === route.name)[0]
|
65
|
65
|
// tab不存在, 先添加
|
66
|
|
if (isNil(tab)) {
|
|
66
|
if (isEmpty(tab)) {
|
67
|
67
|
var menuNav = this.getMenuNavByRouteName(route.name, this.$store.state.menuNavList)
|
68
|
|
if (!isNil(menuNav)) {
|
|
68
|
if (!isEmpty(menuNav)) {
|
69
|
69
|
tab = {
|
70
|
70
|
id: menuNav.menuId,
|
71
|
71
|
name: route.name,
|
|
@ -74,6 +74,8 @@
|
74
|
74
|
url: menuNav.url
|
75
|
75
|
}
|
76
|
76
|
this.ADD_CONTENT_TAB(tab)
|
|
77
|
} else {
|
|
78
|
return console.error('未能找到可用tab标签页!')
|
77
|
79
|
}
|
78
|
80
|
}
|
79
|
81
|
this.menuNavActive = tab.id + ''
|
|
@ -85,10 +87,8 @@
|
85
|
87
|
for (var i = 0; i < menuNavList.length; i++) {
|
86
|
88
|
if (menuNavList[i].list && menuNavList[i].list.length >= 1) {
|
87
|
89
|
return this.getMenuNavByRouteName(name, menuNavList[i].list)
|
88
|
|
} else {
|
89
|
|
if (getRouteNameByUrl(menuNavList[i].url) === name) {
|
90
|
|
return menuNavList[i]
|
91
|
|
}
|
|
90
|
} else if (getRouteNameByUrl(menuNavList[i].url) === name) {
|
|
91
|
return menuNavList[i]
|
92
|
92
|
}
|
93
|
93
|
}
|
94
|
94
|
},
|