This commit is contained in:
许允枞 2024-11-20 16:56:58 +08:00
parent 4a497f839b
commit 3ac96219c6
4 changed files with 4 additions and 4 deletions

View File

@ -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;
});

View File

@ -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;
});

View File

@ -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;
});

View File

@ -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;
});