From a667d997346d1ce3a7b6c386036b78a2448820f8 Mon Sep 17 00:00:00 2001 From: yangzifeng <2547435354@qq.com> Date: Thu, 5 Feb 2026 10:37:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=87=BA=E5=BA=93=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=88=86=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wisdom/outbound/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/views/wisdom/outbound/index.vue b/src/views/wisdom/outbound/index.vue index 39ace73..c24b2c3 100644 --- a/src/views/wisdom/outbound/index.vue +++ b/src/views/wisdom/outbound/index.vue @@ -730,6 +730,9 @@ + +
@@ -1151,6 +1154,7 @@ const outQueryParams = ref({ pageSize: 50, remark: "", }); +const outTotal = ref(0); //查询库存中数据 搜索 const planList = ref([]); const addTableRef = ref(null); @@ -1165,6 +1169,7 @@ function searchPlan() { } else { planList.value = response.rows; } + outTotal.value = response.total; }); }