|
@@ -52,14 +52,14 @@ export default defineComponent({
|
|
|
{width: 1, title: '序号', align: 'center', cellRenderer: ({ rowIndex }) => `${rowIndex + 1}`},
|
|
|
{width: 1, title: '名称', dataKey: 'name'},
|
|
|
{width: 1, title: '状态', align: 'center', cellRenderer: ({rowData}) => (
|
|
|
- <span style={rowData.online === '1' ? "color: #4CFFFF;" : ""}>{rowData.online === '1' ? '在线' : '离线'}</span>
|
|
|
+ <span style={rowData.online == '1' ? "color: #4CFFFF;" : ""}>{rowData.online === '1' ? '在线' : '离线'}</span>
|
|
|
)},
|
|
|
{width: 1, title: '类型', align: 'center', dataKey: 'type'},
|
|
|
{width: 1, title: '距离', align: 'right', cellRenderer: ({rowData}) => {
|
|
|
// const start = props.feat.getGeometry().getCoordinates()
|
|
|
// const end = that.$easyMap.formatPosition.wptTcpt(rowData.wkt)
|
|
|
const end = [Number(rowData.longitude), Number(rowData.latitude)]
|
|
|
- return turf.distance(props.center, end, {units: 'kilometers'}).toFixed(1) + 'km';
|
|
|
+ return turf.distance(props.center, end, {units: 'kilometers'}).toFixed(2) + 'km';
|
|
|
}
|
|
|
},
|
|
|
]
|