fix: 修复镜像选择器分页总数
Build and Deploy Vue3 / build (push) Successful in 1m38s
Build and Deploy Vue3 / deploy (push) Successful in 52s

This commit is contained in:
shiran
2026-08-04 10:04:53 +08:00
parent 2b33307e99
commit 5864731795
+1 -1
View File
@@ -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 }