From 05fb0358a2b5297d61fa3011b410c4e9b6c5c6c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 30 Mar 2026 09:29:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(wms):=20=E5=9C=A8=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=B8=AD=E6=B7=BB=E5=8A=A0waybillId=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 确保导出功能包含必要的waybillId参数以正确过滤数据 --- klp-ui/src/views/wms/delivery/components/detailTable.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/klp-ui/src/views/wms/delivery/components/detailTable.vue b/klp-ui/src/views/wms/delivery/components/detailTable.vue index ce239fcc..6b59f99c 100644 --- a/klp-ui/src/views/wms/delivery/components/detailTable.vue +++ b/klp-ui/src/views/wms/delivery/components/detailTable.vue @@ -397,7 +397,8 @@ export default { /** 导出按钮操作 */ handleExport() { this.download('wms/deliveryWaybillDetail/export', { - ...this.queryParams + ...this.queryParams, + waybillId: this.waybillId, }, `deliveryWaybillDetail_${new Date().getTime()}.xlsx`) } }