吉安感知网项目-前端
罗广辉
2026-01-16 16e4eb39307903ed396360818b6365953abdf5a7
applications/drone-command/src/views/detectionCountermeasure/taskSchedule/index.vue
@@ -64,7 +64,7 @@
               <el-table-column prop="deviceSn" show-overflow-tooltip width="140" label="设备编码" />
               <el-table-column prop="status" show-overflow-tooltip width="100" label="设备状态">
                  <template v-slot="{ row }">
                     {{ getDictLabel(row.status, dictObj.deviceStatus) }}
                     {{ formatDeployLocation(row) }}
                  </template>
               </el-table-column>
               <el-table-column prop="areaName" show-overflow-tooltip width="120" label="区域" />
@@ -157,7 +157,10 @@
   }
   return row.dispatchStartTime || row.dispatchEndTime || ''
}
function formatDeployLocation(row) {
   if (!row.longitude || !row.latitude) return ''
   return `${row.longitude}, ${row.latitude}`
}
// 获取列表
async function getList() {
   loading.value = true