From 5864731795f93bd6f8face1c4025592d00c55b51 Mon Sep 17 00:00:00 2001 From: shiran Date: Tue, 4 Aug 2026 10:04:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=95=9C=E5=83=8F?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E5=99=A8=E5=88=86=E9=A1=B5=E6=80=BB=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/admin/ImageSelectorPopup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/admin/ImageSelectorPopup.vue b/src/components/admin/ImageSelectorPopup.vue index a449f27..b8f45c6 100644 --- a/src/components/admin/ImageSelectorPopup.vue +++ b/src/components/admin/ImageSelectorPopup.vue @@ -98,7 +98,7 @@ const loadList = async () => { items = items.map(item => item.image || item).filter(Boolean) } list.value = items - total.value = inner.total ?? inner.all_count ?? list.value.length + total.value = inner.meta?.count ?? inner.total ?? inner.all_count ?? list.value.length } } catch { /* ignore */ } finally { loading.value = false }