|
|
|
@ -16,7 +16,7 @@ |
|
|
|
刷新 |
|
|
|
</ButtonGradient> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<InputSearch ref="searchComp" style="width: 400px" :formList="searchFormList" @handleSearch="handleSearch" /> |
|
|
|
</div> |
|
|
|
<!-- 内容 --> |
|
|
|
@ -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> |
|
|
|
@ -42,7 +43,7 @@ |
|
|
|
</Pagination> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
@ -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, |
|
|
|
|
|
|
|
@ -146,10 +153,10 @@ export default { |
|
|
|
initData() { |
|
|
|
if(!this.searchData.startDate){ |
|
|
|
this.searchData.startDate = moment().format('YYYY-MM-DD') |
|
|
|
} |
|
|
|
} |
|
|
|
if(!this.searchData.endDate){ |
|
|
|
this.searchData.endDate = moment().format('YYYY-MM-DD') |
|
|
|
} |
|
|
|
} |
|
|
|
this.searchData.periodType = 4 |
|
|
|
request({ |
|
|
|
url: `/business/traffic-statistics/history/trafficFlowStatistics`, |
|
|
|
@ -225,11 +232,11 @@ export default { |
|
|
|
height: 120px; |
|
|
|
margin-left: 55%; |
|
|
|
bottom: 210px; |
|
|
|
z-index: 9999; |
|
|
|
z-index: 9999; |
|
|
|
} |
|
|
|
::v-deep .el-upload-dragger{ |
|
|
|
background-color: #104c66 !important; |
|
|
|
border: 1px solid #359cbc !important; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
</style> |
|
|
|
|