From c8f6bcec12ccd0ef62ef178091c55bc17081789d Mon Sep 17 00:00:00 2001 From: Vinjor Date: Mon, 17 Mar 2025 15:23:39 +0800 Subject: [PATCH] 1 --- src/views/base/config/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/base/config/index.vue b/src/views/base/config/index.vue index 27a97ff..f65a2e5 100644 --- a/src/views/base/config/index.vue +++ b/src/views/base/config/index.vue @@ -159,8 +159,8 @@ export default { getList() { this.loading = true; listConfig(this.queryParams).then(response => { - this.configList = response.rows; - this.total = response.total; + this.configList = response.data.records; + this.total = response.data.total; this.loading = false; }); },