From 01122a58f382c1f38412fceac9e9e22654652177 Mon Sep 17 00:00:00 2001 From: yueli Date: Tue, 21 Jul 2026 10:06:55 +0800 Subject: [PATCH] =?UTF-8?q?debug:=20inbound=5Fsummary=20=E5=8A=A0=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E7=A1=AE=E8=AE=A4=20list.value=20=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inventory-web/src/views/stock/inbound/inbound_summary.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/inventory-web/src/views/stock/inbound/inbound_summary.vue b/inventory-web/src/views/stock/inbound/inbound_summary.vue index 22b5aba..aed5077 100644 --- a/inventory-web/src/views/stock/inbound/inbound_summary.vue +++ b/inventory-web/src/views/stock/inbound/inbound_summary.vue @@ -141,9 +141,14 @@ const fetchData = async () => { } const res = await getInboundSummaryList(params) + console.log('[inbound_summary] res.data:', res.data) if (res.data) { list.value = res.data.items || [] total.value = res.data.total || 0 + console.log('[inbound_summary] list.value 长度:', list.value.length, 'total:', total.value) + if (list.value.length > 0) { + console.log('[inbound_summary] 第一条:', JSON.stringify(list.value[0])) + } } } catch (error) { console.error('获取入库记录失败', error)