From 8fa31ae2e6d81447ec2420255183c675d9c65d5c Mon Sep 17 00:00:00 2001 From: zhangzq Date: Wed, 8 Jul 2026 18:53:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=90=8E=E7=AB=AF=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E8=8E=B7=E5=8F=961?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nladmin-ui/src/views/lucene/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nladmin-ui/src/views/lucene/index.vue b/nladmin-ui/src/views/lucene/index.vue index 8462746..e65b91b 100644 --- a/nladmin-ui/src/views/lucene/index.vue +++ b/nladmin-ui/src/views/lucene/index.vue @@ -220,9 +220,9 @@ export default { luceneOperation.getLogData(this.query).then(res => { this.logs = [] var ansi_up = new AnsiUp() - const page = Array.isArray(res.page) ? res.page : [] + const page = Array.isArray(res.data.page) ? res.data.page : [] this.logs = page.map(item => this.formatLogMessage(item, ansi_up)) - this.query.total = res.total || 0 + this.query.total = res.data.total || 0 }) } }