From 52a23ffa0b5eba2861c42a6005ef22caea9eab99 Mon Sep 17 00:00:00 2001 From: Yangwl <1726150332@qq.com> Date: Tue, 10 Dec 2024 16:03:38 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=B1=E5=9E=8B=E4=B8=8B=E6=8B=89=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E9=95=BF=E5=AE=BD=E9=AB=98=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wms/product/index.vue | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/views/wms/product/index.vue b/src/views/wms/product/index.vue index 22209b8..1cde8fc 100644 --- a/src/views/wms/product/index.vue +++ b/src/views/wms/product/index.vue @@ -440,7 +440,7 @@ @@ -890,7 +890,11 @@ export default { this.open = true; this.title = "添加产品信息"; // 请求 MesBox 列表数据 - listMesBox().then((response) => { + let param ={ + "pageNum":1, + "pageSize":"50" + } + listMesBox(param).then((response) => { // 将返回的 boxType 数据赋值给 boxTypes this.boxTypes = response.rows.map((item) => ({ boxType: item.boxType, // 假设返回数据的字段名为 boxType @@ -913,7 +917,11 @@ export default { this.title = "修改产品信息"; }); // 请求 MesBox 列表数据 - listMesBox().then((response) => { + let param ={ + "pageNum":1, + "pageSize":"50" + } + listMesBox(param).then((response) => { // 将返回的 boxType 数据赋值给 boxTypes this.boxTypes = response.rows.map((item) => ({ boxType: item.boxType, // 假设返回数据的字段名为 boxType