吉安感知网项目-前端
shuishen
2026-01-31 5a4b3a97c8a9433c13fc16ce6d903b5b24cb40ee
feat:地图弹窗显示调整
1 files modified
4 ■■■■ changed files
applications/drone-command/src/components/map-container/components/DevicePopup.vue 4 ●●●● patch | view | raw | blame | history
applications/drone-command/src/components/map-container/components/DevicePopup.vue
@@ -151,9 +151,9 @@
    return `${val}台`
})
const popupRangeText = computed(() => {
    const val = props.device?.effectiveRangeKm
    const val = Number(props.device?.effectiveRangeKm).toFixed(0) || 0
    if (val == null) return '-'
    return `${val}KM`
    return `${val}m`
})
</script>