diff --git a/src/views/overview/overviewBdOffline.vue b/src/views/overview/overviewBdOffline.vue index ef41306..7010ad5 100644 --- a/src/views/overview/overviewBdOffline.vue +++ b/src/views/overview/overviewBdOffline.vue @@ -152,7 +152,7 @@ trigger="click">
- + 显示全部闸井 + 显示未装设备闸井
@@ -306,6 +307,7 @@ timeOut: '', // 3分钟无操作定时器 hasAlarm: false, // 是否有报警, showAll: false, // 是否显示全部闸井(包含报警和不报警,为false时只显示报警) + showNoDeviceWell:false,// 是否显示未装设备闸井 firstAmount: false, // 是否第一次加载井数据 loading: true, // 加载按钮 alarmicon: 'static/BMap/images/alarm-well.svg', // 报警按钮 @@ -392,6 +394,10 @@ this.filterAlarm(true) } }, + // 显示无设备的 + showNoDeviceWells(){ + + }, // 30s倒计时 countDown() { this.clock = window.setInterval(() => { @@ -997,6 +1003,7 @@ const points = polygon.getPath() const poly = new BMap.Polygon(points) const typeCount = {} + debugger for(const item of this.showMarkers){ var ppoint = new BMap.Point(parseFloat(item.position.lng), parseFloat(item.position.lat)) var result = BMapLib.GeoUtils.isPointInPolygon(ppoint, poly);