fix: 修复轨迹追踪页在初始化时轨迹列表为空报错的问题

This commit is contained in:
刘洪洪
2024-03-06 10:56:56 +08:00
parent 4f0c66f861
commit 3d88b64a80

View File

@@ -710,6 +710,9 @@ export default {
}
},
renderTrackingHexagon () {
if (!this.currentShowSubscriber) {
return true
}
if (this.currentShowSubscriber.trackRecords && this.currentShowSubscriber.trackRecords.length > 0) {
// 六边形
const polygonSourceData = this.hexagonDataConverter(this.currentShowSubscriber.trackRecords, 'traceTracking')