From fcf45c27c7e520011aff4498cde3650077e44e4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=BF=97=E9=B9=8F?= <2916022834@qq.com> Date: Tue, 4 Nov 2025 13:49:32 +0800 Subject: [PATCH] =?UTF-8?q?z=E6=9C=80=E5=B0=8F=E6=9F=A5=E6=89=BE1=E4=B8=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/HomeView/history.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/HomeView/history.vue b/src/views/HomeView/history.vue index 192c72ea..f5e058c6 100644 --- a/src/views/HomeView/history.vue +++ b/src/views/HomeView/history.vue @@ -281,7 +281,7 @@ export default defineComponent({ const historyTable = this.$refs.historyTable const height = historyTable.offsetHeight const size = Math.trunc((height - 110) / 54) - this.pageSize = size || 1 + this.pageSize = size <= 0 ? 1 : size if (rem) { this.currentPage = 1 this.getHistoryList()