|
@@ -108,12 +108,17 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|
|
|
+ this.addSelfToAllComponent()
|
|
|
this.initMenu()
|
|
|
this.initMenuMoreBtn()
|
|
|
this.getCurrentMenuByUrl()
|
|
|
// this.setIndexPage()
|
|
|
},
|
|
|
+ inject: ['allComponent'],
|
|
|
methods: {
|
|
|
+ addSelfToAllComponent () {
|
|
|
+ this.allComponent['main-navbar-menu'] = this
|
|
|
+ },
|
|
|
gotoPageByUUID (UUID) {
|
|
|
let item = this.menuList.filter((e) => {
|
|
|
return e.UUID === UUID
|
|
@@ -121,6 +126,12 @@ export default {
|
|
|
console.log(UUID, this.menuList)
|
|
|
this.gotoPage(item)
|
|
|
},
|
|
|
+ gotoPageByName (name) {
|
|
|
+ let item = this.menuList.filter((e) => {
|
|
|
+ return e.ename === name
|
|
|
+ })[0]
|
|
|
+ this.gotoPage(item)
|
|
|
+ },
|
|
|
clickOutSide () {
|
|
|
this.menuOpen = false
|
|
|
},
|
|
@@ -202,6 +213,9 @@ export default {
|
|
|
item.on = true
|
|
|
this.setSidebarByChild(item)
|
|
|
this.$router.push({ path: item.url })
|
|
|
+ if (item.UUID === this.$route.meta.UUID) {
|
|
|
+ this.allComponent['main-content'].resetIframe(item)
|
|
|
+ }
|
|
|
},
|
|
|
setSidebarByChild (item) {
|
|
|
if (!item.children || item.children.length === 0) {
|
|
@@ -226,6 +240,7 @@ export default {
|
|
|
if (i <= this.lineWrapIndex) {
|
|
|
return
|
|
|
}
|
|
|
+ // console.log(e)
|
|
|
if (e.name === item.name) {
|
|
|
spliceItemIndex = i
|
|
|
}
|