feat 修复bug

This commit is contained in:
Ironsp
2026-05-26 10:24:12 +08:00
parent 732eb453b4
commit 42ee161da3

View File

@@ -174,7 +174,7 @@ const getList = async () => {
try {
const res = await listDemo(queryParams.value);
demoList.value = res.data.rows;
total.value = res.total;
total.value = res.data.total;
} finally {
loading.value = false;
}