From afe165a9221b95bddeaf24258832fc91d97cd486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=B7=E8=B0=83?= <3084898776@qq.com> Date: Fri, 23 Aug 2024 21:59:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B5=8B=E8=AF=95=E8=BF=9E?= =?UTF-8?q?=E6=8E=A5=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/source/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/source/index.vue b/src/views/source/index.vue index 7ea56a7..799c81b 100644 --- a/src/views/source/index.vue +++ b/src/views/source/index.vue @@ -233,8 +233,8 @@ export default { getList() { this.loading = true; listSource(this.queryParams).then(response => { - this.sourceList = response.rows; - this.total = response.total; + this.sourceList = response.data.rows; + this.total = response.data.total; this.loading = false; }); },