From 0d1a88458c4b8b6e706080b950ec7ca6acef6a03 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Sun, 28 Sep 2025 16:37:03 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=BD=91=E7=82=B9=E8=B4=B9=E7=94=A8?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E5=8F=96=E6=B6=88=E5=8F=96=E4=BB=B6=E6=B4=BE?= =?UTF-8?q?=E4=BB=B6=E5=85=B3=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisWaybillAjustApply/adjustPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue index eb8a0e6f..0fd8f8b6 100644 --- a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue +++ b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue @@ -210,7 +210,7 @@ - + Date: Sun, 28 Sep 2025 17:03:21 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=BC=8F=E7=BB=84=E6=89=B9=E6=AC=A1?= =?UTF-8?q?=E7=BB=9F=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; From 1a96db901bf596e636a0b51d869de11c7bf72136 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Sun, 28 Sep 2025 17:25:04 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=BC=8F=E7=BB=84=E5=8C=B9=E6=95=8C?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E6=9C=88=E4=BB=BD=E6=8F=90=E9=86=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisTmsSiteBatchMissStatistics/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue b/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue index aca12738..a30ad9be 100644 --- a/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue +++ b/src/views/emis/emisTmsSiteBatchMissStatistics/index.vue @@ -4,7 +4,7 @@ v-show="showSearch" @search="handleQuery" @reset="resetQuery"> + placeholder="请选择月份" start-placeholder="开始月份" end-placeholder="结束月份">