From 214e6fe7a754ddf4900e07033a2fda6200f4d7a1 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期一, 16 十二月 2024 19:38:32 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- admin/src/views/business/reportRecord.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/admin/src/views/business/reportRecord.vue b/admin/src/views/business/reportRecord.vue index 0c1c06b..b5a71a7 100644 --- a/admin/src/views/business/reportRecord.vue +++ b/admin/src/views/business/reportRecord.vue @@ -149,7 +149,8 @@ }, pagination: { capacity: 10, - page: 1 + page: 1, + total: 0 }, total: 0 } @@ -203,6 +204,7 @@ ...pagination }).then(res => { this.dataList = res.records || [] + this.pagination.total = res.total }) }, clear () { @@ -213,6 +215,7 @@ }, handleSizeChange (capacity) { this.pagination.capacity = capacity + this.getList() } } } -- Gitblit v1.9.3