更新
This commit is contained in:
parent
4a497f839b
commit
3ac96219c6
@ -231,7 +231,7 @@
|
|||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
listNews(this.queryParams).then(response => {
|
listNews(this.queryParams).then(response => {
|
||||||
this.newsList = response.rows;
|
this.newsList = response.data.records;
|
||||||
this.total = response.total;
|
this.total = response.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -233,7 +233,7 @@
|
|||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.queryParams.allPlatform = '1'
|
this.queryParams.allPlatform = '1'
|
||||||
listCouponTemplate(this.queryParams).then(response => {
|
listCouponTemplate(this.queryParams).then(response => {
|
||||||
this.couponTemplateList = response.rows;
|
this.couponTemplateList = response.data.records;
|
||||||
this.total = response.total;
|
this.total = response.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -183,7 +183,7 @@
|
|||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
listDetail(this.queryParams).then(response => {
|
listDetail(this.queryParams).then(response => {
|
||||||
this.detailList = response.rows;
|
this.detailList = response.data.records;
|
||||||
this.total = response.total;
|
this.total = response.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -134,7 +134,7 @@
|
|||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
listFzRecord(this.queryParams).then(response => {
|
listFzRecord(this.queryParams).then(response => {
|
||||||
this.fzRecordList = response.rows;
|
this.fzRecordList = response.data.records;
|
||||||
this.total = response.total;
|
this.total = response.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user