From e938515efb15dc25206929d743a6e74ece92a871 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com> Date: Fri, 15 May 2026 15:16:36 +0800 Subject: [PATCH] =?UTF-8?q?fix(wms/coil):=20=E4=BF=AE=E5=A4=8D=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E5=8D=95=E6=97=B6=E9=97=B4=E7=AD=9B=E9=80=89=E7=9A=84?= =?UTF-8?q?=E6=97=B6=E5=88=86=E7=A7=92=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整日期选择器格式为仅年月日,并手动拼接完整时分秒到查询参数,确保时间筛选范围正确覆盖全天 --- klp-ui/src/views/wms/coil/panels/base.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/klp-ui/src/views/wms/coil/panels/base.vue b/klp-ui/src/views/wms/coil/panels/base.vue index b52ece0f..4d6d52c2 100644 --- a/klp-ui/src/views/wms/coil/panels/base.vue +++ b/klp-ui/src/views/wms/coil/panels/base.vue @@ -85,7 +85,7 @@ - @@ -1747,8 +1747,8 @@ export default { ...this.queryParams, exportTimeBy: true, selectType: this.querys.materialType === '原料' ? 'raw_material' : 'product', - startTime: this.queryParams.shipmentTime?.[0], - endTime: this.queryParams.shipmentTime?.[1], + startTime: this.queryParams.shipmentTime?.[0] + ' 00:00:00', + endTime: this.queryParams.shipmentTime?.[1] + ' 23:59:59', } listBoundCoil(query).then(res => { this.materialCoilList = res.rows || [];