Compare commits

...

2 Commits

@ -692,7 +692,7 @@ export default {
...paramsexport, ...paramsexport,
orderByColumn: null orderByColumn: null
}, },
`user_${new Date().getTime()}.xlsx` `电表整点数据_${new Date().getTime()}.xlsx`
) )
} }
} }

@ -929,6 +929,11 @@ export default {
this.queryParams.checkTimeEnd = null; this.queryParams.checkTimeEnd = null;
} }
const routeCheckType = this.$route.query.checkType
if (routeCheckType){
this.queryParams.checkType = routeCheckType
}
listProduce(this.queryParams).then(response => { listProduce(this.queryParams).then(response => {
this.incomeList = response.rows; this.incomeList = response.rows;
this.total = response.total; this.total = response.total;

@ -663,6 +663,10 @@ export default {
this.queryParams.checkTimeStart = null; this.queryParams.checkTimeStart = null;
this.queryParams.checkTimeEnd = null; this.queryParams.checkTimeEnd = null;
} }
const routeCheckType = this.$route.query.checkType
if (routeCheckType){
this.queryParams.checkType = routeCheckType
}
listQcProduce(this.queryParams).then(response => { listQcProduce(this.queryParams).then(response => {
this.qcProduceList = response.rows; this.qcProduceList = response.rows;

Loading…
Cancel
Save