|
@@ -117,7 +117,7 @@
|
|
<!-- <supermap ref="supermap" style="width: 100%;height: 100vh;" class="indexSupermapClass" :mapDiv="'forestMap'"-->
|
|
<!-- <supermap ref="supermap" style="width: 100%;height: 100vh;" class="indexSupermapClass" :mapDiv="'forestMap'"-->
|
|
<!-- :dynamicPlotting="false" :mapSite="{ doubleClickZoom: false }" :codes="['9fa5']" :isSideBySide="false"-->
|
|
<!-- :dynamicPlotting="false" :mapSite="{ doubleClickZoom: false }" :codes="['9fa5']" :isSideBySide="false"-->
|
|
<!-- @showEventDialog="showEventDialog"></supermap>-->
|
|
<!-- @showEventDialog="showEventDialog"></supermap>-->
|
|
- <supermap ref="supermap" style="width: 100%;height: 100vh;" @showEventDialog="showEventDialog"></supermap>
|
|
|
|
|
|
+ <supermap ref="supermap" style="width: 100%;height: 100vh;" @showEventDialog="showEventDialog" :showLayer="true" @fatherMethod="fatherMethod"></supermap>
|
|
<!-- 右侧 -->
|
|
<!-- 右侧 -->
|
|
<div class="rightbar rightbar-index" ref="right">
|
|
<div class="rightbar rightbar-index" ref="right">
|
|
<div class="right-item1">
|
|
<div class="right-item1">
|
|
@@ -425,6 +425,7 @@
|
|
@showDialog="showDialog"></firespread>
|
|
@showDialog="showDialog"></firespread>
|
|
<eventLocation ref="eventLocation"></eventLocation>
|
|
<eventLocation ref="eventLocation"></eventLocation>
|
|
<TVWall ref="TVWall"></TVWall>
|
|
<TVWall ref="TVWall"></TVWall>
|
|
|
|
+ <TVWalls ref="TVWalls"></TVWalls>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -456,6 +457,7 @@
|
|
import vBottomMenu from '@/components/vBottomMenu.vue' //一体化公共底部菜单
|
|
import vBottomMenu from '@/components/vBottomMenu.vue' //一体化公共底部菜单
|
|
import eventLocation from '@/components/eventLocation.vue' //事件定位弹窗
|
|
import eventLocation from '@/components/eventLocation.vue' //事件定位弹窗
|
|
import TVWall from '@/components/TVWall.vue' //电视墙弹窗
|
|
import TVWall from '@/components/TVWall.vue' //电视墙弹窗
|
|
|
|
+ import TVWalls from '@/components/TVWalls.vue' //电视墙弹窗
|
|
import eventdetailsdialog from '@/views/eventdetailsdialog.vue' //事件详情弹窗
|
|
import eventdetailsdialog from '@/views/eventdetailsdialog.vue' //事件详情弹窗
|
|
import firespread from '@/views/firespread.vue' //事件详情弹窗
|
|
import firespread from '@/views/firespread.vue' //事件详情弹窗
|
|
import chart from "./from/dvCapsuleChart.vue";
|
|
import chart from "./from/dvCapsuleChart.vue";
|
|
@@ -489,6 +491,7 @@
|
|
vBottomMenu,
|
|
vBottomMenu,
|
|
eventLocation,
|
|
eventLocation,
|
|
TVWall,
|
|
TVWall,
|
|
|
|
+ TVWalls,
|
|
dateChoose,
|
|
dateChoose,
|
|
eventdetailsdialog,
|
|
eventdetailsdialog,
|
|
firespread
|
|
firespread
|
|
@@ -1159,6 +1162,15 @@
|
|
}]
|
|
}]
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ fatherMethod(dianshiqiang, longitude, latitude, item) {
|
|
|
|
+ this.$refs.TVWalls.showTVWall(
|
|
|
|
+ dianshiqiang, {
|
|
|
|
+ longitude: longitude,
|
|
|
|
+ latitude: latitude,
|
|
|
|
+ },
|
|
|
|
+ item
|
|
|
|
+ );
|
|
|
|
+ },
|
|
getBaseInfo() {
|
|
getBaseInfo() {
|
|
//左侧获取部门信息
|
|
//左侧获取部门信息
|
|
getBaseInfo().then(res => {
|
|
getBaseInfo().then(res => {
|