From 3ec8d3625e6fb7614e2ec4bb02ed99a3cdf4cdb7 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 12 Feb 2026 11:28:47 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/jagzwxm/ja_web
---
applications/drone-command/src/components/map-container/components/DevicePopup.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/applications/drone-command/src/components/map-container/components/DevicePopup.vue b/applications/drone-command/src/components/map-container/components/DevicePopup.vue
index e1f24f5..2f5c8a8 100644
--- a/applications/drone-command/src/components/map-container/components/DevicePopup.vue
+++ b/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>
--
Gitblit v1.9.3