吉安感知网项目-前端
罗广辉
2026-01-31 b2670c2a7f71fa80ebf1e5702bb23f33e4f2dcdc
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>