|
@@ -1,6 +1,9 @@
|
|
|
<template>
|
|
|
<div class="basic-com">
|
|
|
<div class="bc-top-search">
|
|
|
+ <div class="bc-top-change" v-if="isSidebar" title="切换正常导航" @click="changeSidebar">
|
|
|
+ <i class="el-icon-refresh"></i>
|
|
|
+ </div>
|
|
|
<el-autocomplete value-key="name" :trigger-on-focus="false" placeholder="请输入关键字" @select="gotoMenuTop" :fetch-suggestions="FindMenu" v-model="keyValue" class="smp-normal-input">
|
|
|
<el-button slot="append" icon="el-icon-search"></el-button>
|
|
|
</el-autocomplete>
|
|
@@ -14,12 +17,16 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import cloneDeep from 'lodash/cloneDeep'
|
|
|
+// import cloneDeep from 'lodash/cloneDeep'
|
|
|
import pubuliu from './pubuliu'
|
|
|
export default {
|
|
|
components: {
|
|
|
pubuliu
|
|
|
},
|
|
|
+ props: {
|
|
|
+ menuData: '',
|
|
|
+ isSidebar: false
|
|
|
+ },
|
|
|
data () {
|
|
|
return {
|
|
|
keyValue: '',
|
|
@@ -102,14 +109,25 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
treeArr: [],
|
|
|
- treeObj: {}
|
|
|
+ treeObj: {},
|
|
|
+ iconArr: {
|
|
|
+ leftbar_jcyj: 'smp-ni-leftbar_jcyj',
|
|
|
+ leftbar_xsgzdd: 'smp-ni-leftbar_xsgzdd',
|
|
|
+ leftbar_xshcl: 'smp-ni-leftbar_xshcl',
|
|
|
+ leftbar_xshj: 'smp-ni-leftbar_xshj',
|
|
|
+ leftbar_xskcgj: 'smp-ni-leftbar_xskcgj',
|
|
|
+ leftbar_xslb: 'smp-ni-leftbar_xslb',
|
|
|
+ leftbar_xsyp: 'smp-ni-leftbar_xsyp',
|
|
|
+ leftbar_zhtsfx: 'smp-ni-leftbar_zhtsfx'
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
|
|
|
},
|
|
|
mounted () {
|
|
|
- this.ceshi()
|
|
|
+ console.log('basiccom')
|
|
|
+ this.chooseEnter()
|
|
|
this.setTreeToArr()
|
|
|
},
|
|
|
methods: {
|
|
@@ -122,6 +140,64 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
+ changeSidebar () {
|
|
|
+ this.$parent.gotoNormalSidebar()
|
|
|
+ },
|
|
|
+ chooseEnter () {
|
|
|
+ if (this.isSidebar) {
|
|
|
+ this.sidebarMenuItem = this.$store.state.sidebarMenuItem
|
|
|
+ this.formatSidebarToList()
|
|
|
+ console.log(this.list)
|
|
|
+ } else {
|
|
|
+ this.getBasicComList()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getBasicComList () {},
|
|
|
+ formatSidebarToList () {
|
|
|
+ let currentMenuList = this.sidebarMenuItem.children
|
|
|
+ let lv = 0
|
|
|
+ if (currentMenuList) {
|
|
|
+ this.list = this.addMenu(currentMenuList, lv)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ addMenu (arr, lv) {
|
|
|
+ // {
|
|
|
+ // name: '二级导航名',
|
|
|
+ // id: 1,
|
|
|
+ // style: {},
|
|
|
+ // children: [
|
|
|
+ // {
|
|
|
+ // name: '三级导航名2',
|
|
|
+ // id: 2,
|
|
|
+ // pid: 1,
|
|
|
+ // lv: 1,
|
|
|
+ // icon: 'iconName'
|
|
|
+ // },
|
|
|
+ let list = []
|
|
|
+ let iconIndex = 0
|
|
|
+ let iconArr = Object.values(this.iconArr)
|
|
|
+ arr.forEach((e) => {
|
|
|
+ if (!e.noMenu) {
|
|
|
+ let obj = {
|
|
|
+ ...e,
|
|
|
+ lv: lv,
|
|
|
+ id: e.UUID,
|
|
|
+ pid: e.parentUUID,
|
|
|
+ url: e.path ? ('/' + e.path) : '',
|
|
|
+ style: {},
|
|
|
+ icon: iconArr[iconIndex++]
|
|
|
+ }
|
|
|
+ if (iconIndex === iconArr.length) {
|
|
|
+ iconIndex = 0
|
|
|
+ }
|
|
|
+ if (e.children && e.children.length) {
|
|
|
+ obj.children = this.addMenu(e.children, (lv + 1))
|
|
|
+ }
|
|
|
+ list.push(obj)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ return list
|
|
|
+ },
|
|
|
FindMenu (str, cb) {
|
|
|
let itemArr = this.treeArr.filter((e) => {
|
|
|
return e.name.indexOf(str) > -1
|