修改固定物显示

main
suixy 3 weeks ago
parent 1c8a49a1d6
commit 214ed86321

@ -242,9 +242,11 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="time" label="时间" width="100"/> <el-table-column prop="time" label="时间" width="100"/>
<el-table-column prop="Lat" label="目标经纬度" width="100"> <el-table-column label="目标经纬度" width="100">
<template #default="scope"> <template #default="scope">
{{ scope.row.Lon }},{{ scope.row.Lat }} <span>{{ scope.row.Lon }}</span>
<br>
<span>{{ scope.row.Lat }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="Strength" label="强度信息" width="100"/> <el-table-column prop="Strength" label="强度信息" width="100"/>
@ -303,8 +305,14 @@
{{ (currentPage2 - 1) * pageSize2 + scope.$index + 1 }} {{ (currentPage2 - 1) * pageSize2 + scope.$index + 1 }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="Lon" label="目标经度" width="100"/> <el-table-column prop="time" label="时间" width="100"/>
<el-table-column prop="Lat" label="目标纬度" width="100"/> <el-table-column label="目标经纬度" width="100">
<template #default="scope">
<span>{{ scope.row.Lon }}</span>
<br>
<span>{{ scope.row.Lat }}</span>
</template>
</el-table-column>
<el-table-column prop="Strength" label="强度信息" width="100"/> <el-table-column prop="Strength" label="强度信息" width="100"/>
<el-table-column label="处理方式" show-overflow-tooltip width="200" fixed="right"> <el-table-column label="处理方式" show-overflow-tooltip width="200" fixed="right">
<template #default="scope"> <template #default="scope">

Loading…
Cancel
Save