From 7e1d65258f21a9c3c29502d7155b98a00ade5e08 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Thu, 2 Mar 2023 16:02:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogSelectReceiveOrder.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/inout/DialogSelectReceiveOrder.vue b/src/views/inout/DialogSelectReceiveOrder.vue index 98573ab0..21fc9ea1 100644 --- a/src/views/inout/DialogSelectReceiveOrder.vue +++ b/src/views/inout/DialogSelectReceiveOrder.vue @@ -283,11 +283,11 @@ export default { getList() { this.loading = true; if (this.actDateRange !== null) { - this.listQuery.startDate = this.actDateRange[0]; - this.listQuery.endDate = this.actDateRange[1]; + this.listQuery.startTime = this.actDateRange[0]; + this.listQuery.endTime = this.actDateRange[1]; } else { - this.listQuery.startDate = null; - this.listQuery.endDate = null; + this.listQuery.startTime = null; + this.listQuery.endTime = null; } this.listQuery.customerId = store.getters.customerId; getReceiveOrder(this.listQuery)