From 3ac96219c69e6ad03ff8a17e2fc5b3b2e822d23f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=85=81=E6=9E=9E?= <3422692813@qq.com> Date: Wed, 20 Nov 2024 16:56:58 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inspection/inspection/NewsAnnouncement/index.vue | 2 +- .../inspection/inspection/PartnerManagement/couponTemplate.vue | 2 +- .../inspection/inspection/PartnerManagement/partnerApply.vue | 2 +- src/views/inspection/inspection/fzRecord/fzList.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/inspection/inspection/NewsAnnouncement/index.vue b/src/views/inspection/inspection/NewsAnnouncement/index.vue index 12f7316..fbdbe15 100644 --- a/src/views/inspection/inspection/NewsAnnouncement/index.vue +++ b/src/views/inspection/inspection/NewsAnnouncement/index.vue @@ -231,7 +231,7 @@ getList() { this.loading = true; listNews(this.queryParams).then(response => { - this.newsList = response.rows; + this.newsList = response.data.records; this.total = response.total; this.loading = false; }); diff --git a/src/views/inspection/inspection/PartnerManagement/couponTemplate.vue b/src/views/inspection/inspection/PartnerManagement/couponTemplate.vue index 9bcbc4e..9c74b8e 100644 --- a/src/views/inspection/inspection/PartnerManagement/couponTemplate.vue +++ b/src/views/inspection/inspection/PartnerManagement/couponTemplate.vue @@ -233,7 +233,7 @@ this.loading = true; this.queryParams.allPlatform = '1' listCouponTemplate(this.queryParams).then(response => { - this.couponTemplateList = response.rows; + this.couponTemplateList = response.data.records; this.total = response.total; this.loading = false; }); diff --git a/src/views/inspection/inspection/PartnerManagement/partnerApply.vue b/src/views/inspection/inspection/PartnerManagement/partnerApply.vue index e74e635..af0a5ed 100644 --- a/src/views/inspection/inspection/PartnerManagement/partnerApply.vue +++ b/src/views/inspection/inspection/PartnerManagement/partnerApply.vue @@ -183,7 +183,7 @@ getList() { this.loading = true; listDetail(this.queryParams).then(response => { - this.detailList = response.rows; + this.detailList = response.data.records; this.total = response.total; this.loading = false; }); diff --git a/src/views/inspection/inspection/fzRecord/fzList.vue b/src/views/inspection/inspection/fzRecord/fzList.vue index 3a333e5..cc27b88 100644 --- a/src/views/inspection/inspection/fzRecord/fzList.vue +++ b/src/views/inspection/inspection/fzRecord/fzList.vue @@ -134,7 +134,7 @@ getList() { this.loading = true; listFzRecord(this.queryParams).then(response => { - this.fzRecordList = response.rows; + this.fzRecordList = response.data.records; this.total = response.total; this.loading = false; });