diff --git a/src/components/Map/location/LocationMapss.vue b/src/components/Map/location/LocationMapss.vue index b9c1a50..64532cf 100644 --- a/src/components/Map/location/LocationMapss.vue +++ b/src/components/Map/location/LocationMapss.vue @@ -197,14 +197,17 @@ export default { methods: { async getAreas() { - if (!this.areaId) return + // 如果没有 areaId,直接初始化地图 + if (!this.areaId) { + this.initAMap(); + return; + } + // 有 areaId 时获取区域信息 getArea(this.areaId).then(response => { - console.log(response, 'responseresponse'); this.area = response.data; - listParking({ areaId: this.area.areaId }).then(response => { let list = response.rows; console.log(list, 'listlistlist'); @@ -291,22 +294,28 @@ export default { this.removeAllMarker() if (this.currentLng != null && this.currentLat != null) { this.updateTrackData() - this.addArea(JSON.parse(this.area.boundaryStr) || []); - //停车区 - this.parkingList.forEach(parking => { - this.addParking(JSON.parse(parking.boundaryStr) || [], parking.parkingName, parking.longitude, parking.latitude); - this.addMarker2(parking, "https://lxnapi.ccttiot.com/FqcYf6ecsnbC0OT6YYAF5npgu-kh", parking.parkingName, "#1890ff"); - }); - //禁停区 - this.noParkingList.forEach(noparking => { - this.addNoParking(JSON.parse(noparking.boundaryStr) || []); - this.addMarker2(noparking, "https://lxnapi.ccttiot.com/FjKE5PWbnEnZUq3k-wVIvV4lv8Ab", noparking.parkingName, "#ff4444"); - }); - //禁行区 - this.noridingList.forEach(noriding => { - this.addNoriding(JSON.parse(noriding.boundaryStr) || [], noriding.parkingName, noriding.longitude, noriding.latitude); - this.addMarker2(noriding, "https://lxnapi.ccttiot.com/FmX1diEPPbFYe1vcUfKp6qbKzzh2", noriding.parkingName, "#ffcc00"); - }); + + // 只有在有区域信息时才添加区域和停车场 + if(this.area) { + this.addArea(JSON.parse(this.area.boundaryStr) || []); + //停车区 + this.parkingList.forEach(parking => { + this.addParking(JSON.parse(parking.boundaryStr) || [], parking.parkingName, parking.longitude, parking.latitude); + this.addMarker2(parking, "https://lxnapi.ccttiot.com/FqcYf6ecsnbC0OT6YYAF5npgu-kh", parking.parkingName, "#1890ff"); + }); + //禁停区 + this.noParkingList.forEach(noparking => { + this.addNoParking(JSON.parse(noparking.boundaryStr) || []); + this.addMarker2(noparking, "https://lxnapi.ccttiot.com/FjKE5PWbnEnZUq3k-wVIvV4lv8Ab", noparking.parkingName, "#ff4444"); + }); + //禁行区 + this.noridingList.forEach(noriding => { + this.addNoriding(JSON.parse(noriding.boundaryStr) || [], noriding.parkingName, noriding.longitude, noriding.latitude); + this.addMarker2(noriding, "https://lxnapi.ccttiot.com/FmX1diEPPbFYe1vcUfKp6qbKzzh2", noriding.parkingName, "#ffcc00"); + }); + } + + // 无论是否有区域信息都添加设备标记 this.addMarker(this.currentLng, this.currentLat, this.deviceSn, this.deviceInfo.status, this.deviceInfo.onlineStatus) } }, diff --git a/src/views/system/device/device_detail.vue b/src/views/system/device/device_detail.vue index 2b5f400..2ad7f0c 100644 --- a/src/views/system/device/device_detail.vue +++ b/src/views/system/device/device_detail.vue @@ -44,8 +44,8 @@
电门: - - {{ deviceInfo.powerStatus === '1' ? '开' : '关' }} + + {{ deviceInfo.quality === '1' ? '开' : '关' }}
@@ -1157,4 +1157,4 @@ export default { height: calc(100% - 41px); // 减去header高度 } } - \ No newline at end of file +