Browse Source

一类交调站综合查询修改

develop
lau572 1 month ago
parent
commit
586d134ddb
  1. 27
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSurvey/survey/data.js
  2. 20
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSurvey/survey/index.vue

27
ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSurvey/survey/data.js

@ -106,5 +106,30 @@ export const searchFormList = [
return true;
}
},
}
},
{
label: "类型:",
key: "rowType",
type: "RadioGroup",
isAlone: true,
required: true,
default:'1',
options: {
activeColor: "linear-gradient(180deg, #37E7FF 0%, #009BCC 100%)",
options: [
{
key: "1",
label: "全部",
},
{
key: "2",
label: "按方向",
},
{
key: "3",
label: "按车型",
},
],
},
},
];

20
ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficSurvey/survey/index.vue

@ -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) {

Loading…
Cancel
Save