|
|
|
@ -30,6 +30,7 @@ |
|
|
|
<ElTableColumn label="结束桩号" prop="endMake" width="120" align="center" header-align="center" /> |
|
|
|
<ElTableColumn label="门架名称" prop="facilityName" align="center" header-align="center" /> |
|
|
|
<ElTableColumn label="车流量" prop="trafficVolume" width="120" align="center" header-align="center" /> |
|
|
|
<ElTableColumn label="牌识车流量" prop="traffiVolumePlate" width="120" align="center" header-align="center" /> |
|
|
|
<ElTableColumn label="采集时间" prop="statisticalDate" width="240" align="center" header-align="center" /> |
|
|
|
</Table> |
|
|
|
</div> |
|
|
|
@ -116,6 +117,11 @@ export default { |
|
|
|
} else { |
|
|
|
_search['direction'] = null |
|
|
|
} |
|
|
|
if(data.facilityName){ |
|
|
|
_search['facilityName'] = data.facilityName; |
|
|
|
} else { |
|
|
|
_search['facilityName'] = null |
|
|
|
} |
|
|
|
this.searchData = { |
|
|
|
...this.searchData, |
|
|
|
..._search |
|
|
|
@ -137,6 +143,7 @@ export default { |
|
|
|
getSearchData() { |
|
|
|
let params = { |
|
|
|
direction: this.searchData?.direction, |
|
|
|
facilityName: this.facilityName?.facilityName, |
|
|
|
pageSize: this.pageSize, |
|
|
|
pageNum: this.currentPage, |
|
|
|
|
|
|
|
|