diff --git a/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue b/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue index e98b0679..aca12738 100644 --- a/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue +++ b/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue @@ -3,7 +3,7 @@ - @@ -72,12 +72,15 @@ export default { total: 0, // TMS漏组批次信息表表格数据 emisTmsSiteBatchMissStatisticsList: [], + // 时间搜索 + dateRange:[], // 查询参数 queryParams: { pageNum: 1, pageSize: 20, - billMonth: null, startSiteCode: null, + startTime: null, + endTime: null, } }; @@ -90,6 +93,11 @@ export default { /** 查询TMS漏组批次信息表列表 */ getList() { this.loading = true; + this.queryParams = this.addDateRange(this.queryParams, this.dateRange); + if (this.dateRange.length > 0) { + this.queryParams.startTime = this.queryParams.params.beginTime; + this.queryParams.endTime = this.queryParams.params.endTime; + } emisTmsSiteBatchMissStatistics(this.queryParams).then(response => { this.emisTmsSiteBatchMissStatisticsList = response.rows; this.total = response.total;