|
@@ -36,7 +36,7 @@
|
|
|
</div>
|
|
|
<div class="i-list-con h-73">
|
|
|
<div class="overflow-y" style="height: 39vh">
|
|
|
- <div class="d-l-con" :class="{on:listCurrentIndex==item.deptId}" v-for="(item,index) in deptGroupList"
|
|
|
+ <div class="d-l-con" :class="{on:listCurrentIndex==item.deptId}" v-for="(item,index) in deptGroupList"
|
|
|
v-on:click="indentleftByDeptIdSetMarkers(item.deptId)">
|
|
|
<div class="d-l-l-text">
|
|
|
<i class="i-small"></i>
|
|
@@ -61,6 +61,7 @@
|
|
|
|
|
|
</div>
|
|
|
<eventLocation ref="eventLocation"></eventLocation>
|
|
|
+ <TVWall ref="TVWall"></TVWall>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -73,6 +74,7 @@
|
|
|
import vheader from '@/components/v-header.vue' //一体化共用头部
|
|
|
import vBottomMenu from '@/components/vBottomMenu.vue' //一体化公共底部菜单
|
|
|
import eventLocation from '@/components/eventLocation.vue' //事件定位弹窗
|
|
|
+ import TVWall from '@/components/TVWall.vue' //电视墙弹窗
|
|
|
|
|
|
// import echarts from 'echarts'
|
|
|
let echarts = require('echarts')
|
|
@@ -81,7 +83,8 @@
|
|
|
supermap,
|
|
|
vheader,
|
|
|
vBottomMenu,
|
|
|
- eventLocation
|
|
|
+ eventLocation,
|
|
|
+ TVWall,
|
|
|
},
|
|
|
created() {
|
|
|
/** ----------------------------------底部按钮公用组件开始------------------------------------- */
|
|
@@ -140,6 +143,10 @@
|
|
|
} else {
|
|
|
this.$refs.bottomMenu.showChild = false
|
|
|
}
|
|
|
+ } else if (click == 'TVWall') {
|
|
|
+ this.$refs.TVWall.showTVWall()
|
|
|
+ this.$refs.supermap.isEditableLayers = false
|
|
|
+ this.$refs.bottomMenu.showChild = false
|
|
|
}
|
|
|
},
|
|
|
//选择图层
|