2023-09-20 21:33:11 +08:00
|
|
|
<template>
|
|
|
|
<div class="h-100">
|
2025-06-20 15:24:21 +08:00
|
|
|
<map-box ref="mapbox">
|
|
|
|
<template #content>
|
|
|
|
<PlaneStatus :plane="plane" />
|
|
|
|
</template>
|
|
|
|
</map-box>
|
2023-09-20 21:33:11 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import MapBox from '@/components/MapBox'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Home',
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
MapBox
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
airList () {
|
|
|
|
return this.$store.state.airList
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @description: 侧边栏显隐
|
|
|
|
*/
|
|
|
|
isCollapse () {
|
|
|
|
return this.$store.state.app.isCollapse
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/**
|
|
|
|
* @description: 创建飞机图标
|
|
|
|
*/
|
|
|
|
makePlanes (planes) {
|
|
|
|
this.$refs.mapbox.removePlanes()// 先清除画布上现有的飞机
|
|
|
|
planes.forEach((plane, index) => { // 创建所有飞机
|
2024-09-19 13:09:43 +08:00
|
|
|
let planeDefaultLonLat
|
2023-09-20 21:33:11 +08:00
|
|
|
if (localStorage.getItem(plane.name) !== null) { // 从本地缓存 拿飞机得初始位置
|
2024-09-19 13:09:43 +08:00
|
|
|
planeDefaultLonLat = JSON.parse(localStorage.getItem(plane.name))
|
|
|
|
plane.lon = planeDefaultLonLat.lon
|
|
|
|
plane.lat = planeDefaultLonLat.lat
|
2023-09-20 21:33:11 +08:00
|
|
|
} else {
|
2024-09-19 13:09:43 +08:00
|
|
|
plane.lon = 0
|
2023-09-20 21:33:11 +08:00
|
|
|
plane.lat = 0
|
|
|
|
}
|
|
|
|
this.$refs.mapbox.makePlane(plane, index)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
if (this.airList.length > 0) {
|
|
|
|
this.makePlanes(this.airList)// 创建飞机图标
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
/**
|
|
|
|
* @description: 飞机列表更新时候 更新地图
|
|
|
|
*/
|
|
|
|
airList: {
|
|
|
|
handler (val) {
|
|
|
|
this.makePlanes(val)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
2025-06-01 03:19:12 +08:00
|
|
|
* @description: 侧边栏显隐
|
2023-09-20 21:33:11 +08:00
|
|
|
*/
|
2025-06-01 03:19:12 +08:00
|
|
|
isCollapse () {
|
|
|
|
return this.$store.state.app.isCollapse
|
2023-09-20 21:33:11 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
destroyed () {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style></style>
|