|
|
@@ -214,6 +214,8 @@ export default {
|
|
|
console.log(nodeData);
|
|
|
if (this.activeLeftTab === 'overview') { // 总览
|
|
|
this.showOverviewDalogs(nodeData);
|
|
|
+ } else if (this.activeLeftTab === 'crossing') { // 路口
|
|
|
+ this.showOverviewDalogs(nodeData);
|
|
|
}
|
|
|
},
|
|
|
// 处理地图鼠标滑出事件
|
|
|
@@ -222,6 +224,10 @@ export default {
|
|
|
if (this.activeLeftTab === 'overview' && mapData) { // 总览
|
|
|
const id = mapData.position[0] + mapData.position[1];
|
|
|
this.$refs.layout.handleDialogClose('crossing3_' + id);
|
|
|
+ } else if (this.activeLeftTab === 'crossing' && mapData) { // 路口
|
|
|
+
|
|
|
+ const id = mapData.position[0] + mapData.position[1];
|
|
|
+ this.$refs.layout.handleDialogClose('crossing3_' + id);
|
|
|
}
|
|
|
},
|
|
|
// 处理地图点击事件
|