This commit is contained in:
邱贞招 2025-01-23 14:36:49 +08:00
parent 5a634b8ca4
commit 0746100243
2 changed files with 31 additions and 22 deletions

View File

@ -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)
}
},

View File

@ -44,8 +44,8 @@
<div class="info-row">
<div class="info-item">
<span class="label">电门</span>
<el-tag :type="deviceInfo.powerStatus === '1' ? 'success' : 'danger'" size="small">
{{ deviceInfo.powerStatus === '1' ? '开' : '关' }}
<el-tag :type="deviceInfo.quality === '1' ? 'success' : 'danger'" size="small">
{{ deviceInfo.quality === '1' ? '开' : '关' }}
</el-tag>
<!-- <span class="value">{{ deviceInfo.quality || '-' }}</span> -->
</div>
@ -1157,4 +1157,4 @@ export default {
height: calc(100% - 41px); // header
}
}
</style>
</style>