From 421d3d3e5ffe63639887f6cffa0d6a17a0342be8 Mon Sep 17 00:00:00 2001 From: woody Date: Tue, 12 Aug 2025 13:40:02 +0800 Subject: [PATCH] fix(delivery): queryparams pkWaresList --- src/views/logistics/delivery/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/logistics/delivery/index.vue b/src/views/logistics/delivery/index.vue index b6e3acb..50126c2 100644 --- a/src/views/logistics/delivery/index.vue +++ b/src/views/logistics/delivery/index.vue @@ -1342,7 +1342,7 @@ export default { }, handleSubmit(products) { this.selectedProductList = [...products] - this.queryParams.productIdList = products.map((item) => item.pkId).join(',') + this.queryParams.pkWaresList = products.map((item) => item.pkId).join(',') this.productLists = products.map((item) => item.waresName).join(',') } }