From 2e97ab5bf1d6c216f1c99526f97affdc865acdd2 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Sun, 28 Sep 2025 17:03:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=BC=8F=E7=BB=84=E6=89=B9=E6=AC=A1=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../emis/emisTmsSiteBatchMissStatistics/index.vue | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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;