|
@@ -30,7 +30,7 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 地图 -->
|
|
<!-- 地图 -->
|
|
- <supermap ref="supermap" style="width: 100%; height: 100vh" @sewageOutletClick="sewageOutletClick"></supermap>
|
|
|
|
|
|
+ <supermap ref="supermap" style="width: 100%; height: 100vh" @fatherMethod="fatherMethod" @sewageOutletClick="sewageOutletClick"></supermap>
|
|
<!-- <button @click="showEventInfo1" style="position: absolute; right: 50%;top: 45%;z-index: 1000;">弹层事件演示用按钮-->
|
|
<!-- <button @click="showEventInfo1" style="position: absolute; right: 50%;top: 45%;z-index: 1000;">弹层事件演示用按钮-->
|
|
<!-- </button>-->
|
|
<!-- </button>-->
|
|
<!-- 右侧 -->
|
|
<!-- 右侧 -->
|
|
@@ -65,6 +65,7 @@
|
|
<eventLocation ref="eventLocation"></eventLocation>
|
|
<eventLocation ref="eventLocation"></eventLocation>
|
|
<TVWall ref="TVWall"></TVWall>
|
|
<TVWall ref="TVWall"></TVWall>
|
|
<TVWalls ref="TVWalls"></TVWalls>
|
|
<TVWalls ref="TVWalls"></TVWalls>
|
|
|
|
+ <TVWalls2 ref="TVWalls2"></TVWalls2>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -81,6 +82,7 @@
|
|
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 TVWalls from "@/components/TVWalls.vue"; //电视墙弹窗
|
|
|
|
+ import TVWalls2 from "@/components/TVWalls2.vue"; //电视墙弹窗
|
|
import {
|
|
import {
|
|
getIconBg
|
|
getIconBg
|
|
} from "@/api/components/sookaMapIcon";
|
|
} from "@/api/components/sookaMapIcon";
|
|
@@ -101,7 +103,8 @@
|
|
vBottomMenu,
|
|
vBottomMenu,
|
|
eventLocation,
|
|
eventLocation,
|
|
TVWall,
|
|
TVWall,
|
|
- TVWalls
|
|
|
|
|
|
+ TVWalls,
|
|
|
|
+ TVWalls2,
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
/** ----------------------------------底部按钮公用组件开始------------------------------------- */
|
|
/** ----------------------------------底部按钮公用组件开始------------------------------------- */
|
|
@@ -201,6 +204,15 @@
|
|
this.$refs.bottomMenu.showChild = false;
|
|
this.$refs.bottomMenu.showChild = false;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ fatherMethod(dianshiqiang, longitude, latitude, item) {
|
|
|
|
+ this.$refs.TVWalls2.showTVWall(
|
|
|
|
+ dianshiqiang, {
|
|
|
|
+ longitude: longitude,
|
|
|
|
+ latitude: latitude,
|
|
|
|
+ },
|
|
|
|
+ item
|
|
|
|
+ );
|
|
|
|
+ },
|
|
//选择图层
|
|
//选择图层
|
|
choseLayerSwitching(url, isClear) {
|
|
choseLayerSwitching(url, isClear) {
|
|
this.$refs.supermap.layerSwitching(url, isClear);
|
|
this.$refs.supermap.layerSwitching(url, isClear);
|