|
|
@ -33,13 +33,7 @@ |
|
|
|
<span>一类交调站{{scope.row.stakeMark}}</span> |
|
|
|
</template> |
|
|
|
</ElTableColumn> |
|
|
|
<ElTableColumn label="方向" prop="direction" align="center" header-align="center" width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.direction == '1'">菏泽</span> |
|
|
|
<span v-if="scope.row.direction == '3'">济南</span> |
|
|
|
<span v-if="scope.row.direction == '2'">合计</span> |
|
|
|
</template> |
|
|
|
</ElTableColumn> |
|
|
|
<ElTableColumn label="方向" prop="direction" align="center" header-align="center" width="120" /> |
|
|
|
<ElTableColumn v-for="item in columnList" :label="item.label" :prop="item.key" min-width="80" align="center" header-align="center" /> |
|
|
|
<ElTableColumn label="合计" prop="total" width="150" align="center" header-align="center" /> |
|
|
|
</Table> |
|
|
@ -141,6 +135,7 @@ export default { |
|
|
|
this.searchData.timestamp = data.timestamp |
|
|
|
this.searchData.startTime = data.startTime |
|
|
|
this.searchData.endTime = data.endTime |
|
|
|
this.searchData.rowType = data.rowType |
|
|
|
this.initData(); |
|
|
|
}, |
|
|
|
indexMethod(index) { |
|
|
@ -163,14 +158,23 @@ export default { |
|
|
|
if(!this.searchData.type){ |
|
|
|
this.searchData.type = 'day' |
|
|
|
} |
|
|
|
if(!this.searchData.rowType){ |
|
|
|
this.searchData.rowType = '1' |
|
|
|
} |
|
|
|
request({ |
|
|
|
url: `/trafficSurveyData/dcTrafficSurveyData/list`, |
|
|
|
method: "get", |
|
|
|
params: this.searchData, |
|
|
|
}).then((result) => { |
|
|
|
this.loadCharts(result.data) |
|
|
|
}); |
|
|
|
request({ |
|
|
|
url: `/trafficSurveyData/dcTrafficSurveyData/listNew`, |
|
|
|
method: "get", |
|
|
|
params: this.searchData, |
|
|
|
}).then((result) => { |
|
|
|
this.columnList = result.data.columnList |
|
|
|
this.tableData = result.data.rowList |
|
|
|
this.loadCharts(result.data) |
|
|
|
}); |
|
|
|
}, |
|
|
|
onSizeChange(pageSize) { |
|
|
|