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,6 +294,9 @@ export default {
this.removeAllMarker()
if (this.currentLng != null && this.currentLat != null) {
this.updateTrackData()
//
if(this.area) {
this.addArea(JSON.parse(this.area.boundaryStr) || []);
//
this.parkingList.forEach(parking => {
@ -307,6 +313,9 @@ export default {
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>