吉安感知网项目-前端
罗广辉
2026-08-13 1d552a3bad95caae4af15322df28e6240b797693
applications/drone-command/src/views/detectionCountermeasure/detectionRange/index.vue
@@ -65,7 +65,7 @@
                     {{ formatDeviceCode(row) }}
                  </template>
               </el-table-column>
               <el-table-column label="操作" class-name="operation-btns">
               <el-table-column label="操作" class-name="operation-btns" fixed="right">
                  <template v-slot="{ row }">
                     <el-link @click="handleView(row)">查看</el-link>
                     <el-link @click="handleEdit(row)">编辑</el-link>
@@ -204,8 +204,10 @@
function formatRange(row) {
   if (!row) return '-'
   const value = row.effectiveRangeKm ?? row.range
   return value === null || value === undefined || value === '' ? '-' : value
   let value = row.effectiveRangeKm ?? row.range
   return value === null || value === undefined || value === '' ? '-' : Number(value).toFixed(0)
}
function formatDeviceCode(row) {