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)