|
@@ -30,6 +30,8 @@
|
|
|
<script>
|
|
|
// import cloneDeep from 'lodash/cloneDeep'
|
|
|
import pubuliu from './pubuliu'
|
|
|
+import tool from '@/utils/tool.js'
|
|
|
+import Cookies from 'js-cookie'
|
|
|
export default {
|
|
|
components: {
|
|
|
pubuliu
|
|
@@ -60,6 +62,7 @@ export default {
|
|
|
this.isShowSeaClose = true
|
|
|
} else {
|
|
|
this.isShowSeaClose = false
|
|
|
+ this.clearLightClass()
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -89,7 +92,7 @@ export default {
|
|
|
if (this.isSidebar) {
|
|
|
this.sidebarMenuItem = this.$store.state.sidebarMenuItem
|
|
|
this.formatSidebarToList()
|
|
|
- console.log(this.list)
|
|
|
+ // console.log(this.list)
|
|
|
} else {
|
|
|
this.getBasicComList()
|
|
|
}
|
|
@@ -197,7 +200,7 @@ export default {
|
|
|
pid: pid,
|
|
|
lv: 1,
|
|
|
icon: 'jczj-icon-' + icon[i],
|
|
|
- url: 'https://www.baidu.com'
|
|
|
+ bcUrl: 'https://www.baidu.com'
|
|
|
}
|
|
|
arr.push(obj)
|
|
|
})
|
|
@@ -245,16 +248,20 @@ export default {
|
|
|
let iconArr = this.iconArr
|
|
|
arr.forEach((e) => {
|
|
|
if (!e.noMenu) {
|
|
|
- let url = e.path ? ('/' + e.path) : ''
|
|
|
+ let bcUrl = ''
|
|
|
if (!e.url && lv === 0) {
|
|
|
- url = ''
|
|
|
+ bcUrl = ''
|
|
|
}
|
|
|
+ if (e.url) {
|
|
|
+ bcUrl = this.getIframeUrl(e) || (e.path ? ('/' + e.path) : '')
|
|
|
+ }
|
|
|
+ // console.log(bcUrl, e)
|
|
|
let obj = {
|
|
|
...e,
|
|
|
lv: lv,
|
|
|
id: e.UUID,
|
|
|
pid: e.parentUUID,
|
|
|
- url: url,
|
|
|
+ bcUrl: bcUrl,
|
|
|
style: {},
|
|
|
icon: iconArr[this.iconIndex++]
|
|
|
}
|
|
@@ -269,42 +276,76 @@ export default {
|
|
|
})
|
|
|
return list
|
|
|
},
|
|
|
+ getIframeUrl (item) {
|
|
|
+ let isNew = tool.getQueryVariable(item.url, 'new')
|
|
|
+ if (isNew === 'yes') {
|
|
|
+ return this.addParams(item.url)
|
|
|
+ } else {
|
|
|
+ return ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ addParams (url) {
|
|
|
+ let prevWord = '?'
|
|
|
+ if (url.indexOf(prevWord) > -1) {
|
|
|
+ prevWord = '&'
|
|
|
+ }
|
|
|
+ let _url = url + prevWord + 'sessionToken=' + Cookies.get('token') + '&menu=' + this.$route.name
|
|
|
+ return _url
|
|
|
+ },
|
|
|
FindMenu (str, cb) {
|
|
|
let itemArr = this.treeArr.filter((e) => {
|
|
|
return e.name.indexOf(str) > -1
|
|
|
})
|
|
|
- console.log(itemArr)
|
|
|
this.currentSearchItems = itemArr
|
|
|
+ console.log(itemArr)
|
|
|
cb(itemArr)
|
|
|
},
|
|
|
clearSea () {
|
|
|
// console.log(this.$refs.autocomplete)
|
|
|
+ // this.removeSearchBread()
|
|
|
this.keyValue = ''
|
|
|
- this.currentSearchItems.forEach((e) => {
|
|
|
- let root = this.findParent(e)
|
|
|
- window.$('#root' + root.id).removeClass('onLight')
|
|
|
- })
|
|
|
+ // this.currentSearchItems.forEach((e) => {
|
|
|
+ // let list = this.findParentChain(e)
|
|
|
+ // window.$('#root' + list[0].id).removeClass('onLight')
|
|
|
+ // list[1] && window.$('#lv1' + list[1].id).removeClass('onLight')
|
|
|
+ // })
|
|
|
this.currentSearchItems = []
|
|
|
- this.$refs.autocomplete.getData()
|
|
|
+ // this.$refs.autocomplete.getData()
|
|
|
+ },
|
|
|
+ clearLightClass () {
|
|
|
+ // this.currentSearchItems.forEach((e) => {
|
|
|
+ // let list = this.findParentChain(e)
|
|
|
+ // window.$('#root' + list[0].id).removeClass('onLight')
|
|
|
+ // list[1] && window.$('#lv1' + list[1].id).removeClass('onLight')
|
|
|
+ // })
|
|
|
+ window.$('.com-one[id^="root"]').removeClass('onLight')
|
|
|
+ window.$('.csm-item[id^="lv1"]').removeClass('onLight')
|
|
|
},
|
|
|
searchItemsLight () {
|
|
|
+ this.clearLightClass()
|
|
|
this.currentSearchItems.forEach((e) => {
|
|
|
- let root = this.findParent(e)
|
|
|
- window.$('#root' + root.id).addClass('onLight')
|
|
|
+ let list = this.findParentChain(e)
|
|
|
+ console.log(list)
|
|
|
+ window.$('#root' + list[0].id).addClass('onLight')
|
|
|
+ list[1] && window.$('#lv1' + list[1].id).addClass('onLight')
|
|
|
})
|
|
|
},
|
|
|
setSearchBreadLight () {
|
|
|
let root = this.searchBreadList[0]
|
|
|
- let jqRoot = window.$('#root' + root.id)
|
|
|
- jqRoot.addClass('onLight')
|
|
|
+ window.$('#root' + root.id).addClass('onLight')
|
|
|
+ this.searchBreadList[1] && window.$('#lv1' + this.searchBreadList[1].id).addClass('onLight')
|
|
|
},
|
|
|
removeSearchBreadLight () {
|
|
|
+ if (!this.searchBreadList.length) {
|
|
|
+ return
|
|
|
+ }
|
|
|
let root = this.searchBreadList[0]
|
|
|
- let jqRoot = window.$('#root' + root.id)
|
|
|
- jqRoot.removeClass('onLight')
|
|
|
+ window.$('#root' + root.id).removeClass('onLight')
|
|
|
+ this.searchBreadList[1] && window.$('#lv1' + this.searchBreadList[1].id).removeClass('onLight')
|
|
|
},
|
|
|
gotoMenuTop (item) {
|
|
|
let rootParent = this.findParent(item)
|
|
|
+ this.removeSearchBread()
|
|
|
this.searchBreadList = this.findParentChain(item)
|
|
|
this.setSearchBreadLight()
|
|
|
// let rootItem = document.querySelector('#root' + rootParent.id)
|