[FIX]受众列表总条数字段修改count

This commit is contained in:
huweihang
2025-12-19 09:20:47 +08:00
parent bf44d562dd
commit 1dbbb488d6

View File

@@ -134,7 +134,7 @@ export default {
.then((res) => {
const data = res.result || res || {};
this.tableData = data.list || [];
this.total = data.total || 0;
this.total = data.count || 0;
})
.finally(() => {
this.loading = false;