parent
98129dee3f
commit
88c4cb4393
3 changed files with 74 additions and 2 deletions
@ -0,0 +1,61 @@ |
|||||||
|
<template> |
||||||
|
<div class="mile_warp"> |
||||||
|
<table> |
||||||
|
<thead> |
||||||
|
<tr> |
||||||
|
<th>时间</th> |
||||||
|
<th>车牌号</th> |
||||||
|
<th>报警信息</th> |
||||||
|
</tr> |
||||||
|
</thead> |
||||||
|
<tbody> |
||||||
|
<tr v-for="(item,index) in carMile" :key="'car'+index"> |
||||||
|
<td>{{item.cardNo}}</td> |
||||||
|
<td>{{item.mile}}</td> |
||||||
|
<td><a :href="`https://lcrm3.lunz.cn/#/Equipment/LocatMonitor/Path/${item.key}`" target="_blank">查询</a></td> |
||||||
|
</tr> |
||||||
|
</tbody> |
||||||
|
</table> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import { lunzApi, key, carList } from "@/api/data"; |
||||||
|
export default { |
||||||
|
data() { |
||||||
|
return { |
||||||
|
carList: carList,//车辆设备 |
||||||
|
carMile:[], |
||||||
|
} |
||||||
|
}, |
||||||
|
mounted() { |
||||||
|
this.queryYesterdayMile(); |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
//昨日里程 |
||||||
|
queryYesterdayMile() { |
||||||
|
lunzApi.getYesterdayMile(key).then(res => { |
||||||
|
let resData = res.Data; |
||||||
|
console.log(resData) |
||||||
|
this.carList.map(item => { |
||||||
|
let idx = resData.findIndex(item2 => item2.Imei == item.deviceId); |
||||||
|
item.mile = idx > -1 ? res.Data[idx].Mile : 0; |
||||||
|
this.carMile.push(item); |
||||||
|
}) |
||||||
|
this.carMile.sort((a,b) => { |
||||||
|
return b.mile - a.mile; |
||||||
|
}) |
||||||
|
}) |
||||||
|
}, |
||||||
|
}, |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped> |
||||||
|
.mile_warp { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
overflow: hidden; |
||||||
|
font-size: 12px; |
||||||
|
} |
||||||
|
</style> |
||||||
Loading…
Reference in new issue