From b56359e57241b10882d3158ce636698a75ecdccb Mon Sep 17 00:00:00 2001 From: 2256907009 <2256907009@qq.com> Date: Thu, 11 Dec 2025 17:52:52 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E5=AF=B9=E6=8E=A5=E5=95=86?= =?UTF-8?q?=E5=93=81=E5=88=97=E8=A1=A8=E5=88=86=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/product/ProductList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/product/ProductList.vue b/src/views/product/ProductList.vue index 7bc08f3..41ee43e 100644 --- a/src/views/product/ProductList.vue +++ b/src/views/product/ProductList.vue @@ -408,7 +408,7 @@ const fetchProductList = async () => { if (res.data.code === 200) { productList.value = res.data.data.data || [] productList.value = productList.value.filter(item => item.delete == false) - total.value = res.data.data.total || 0 + total.value = res.data.data.all_count || 0 productList.value = productList.value.map(item => { item.image = item.coverId ? getFileDetail({ file_id: item.coverId }).then(res => res.data.data.url) : '' return item