批量推送

This commit is contained in:
郭庆泰
2026-08-16 13:42:26 +08:00
parent c612d4297a
commit 0c093076a4
66 changed files with 4847 additions and 1627 deletions
+2 -2
View File
@@ -196,8 +196,8 @@ async function loadList() {
}
delete params.startTimeRange
const r = await bizList('meeting', params)
list.value = r.rows || []
page.total = r.total || 0
list.value = (r.data && r.data.rows) || r.rows || []
page.total = (r.data && r.data.total) || r.total || 0
} catch (e) { list.value = []; page.total = 0 }
finally { loading.value = false }
}