This commit is contained in:
许允枞 2024-11-20 16:50:12 +08:00
parent db3b0a3570
commit 4a497f839b

View File

@ -429,7 +429,7 @@
this.dialogTableVisibles = true this.dialogTableVisibles = true
pinglun(data).then(res=>{ pinglun(data).then(res=>{
console.log(res) console.log(res)
this.pinglunlist = res.rows this.pinglunlist = res.data.records
this.pltotal = res.total this.pltotal = res.total
}) })
}, },
@ -444,7 +444,7 @@
this.dialogTableVisibles = true this.dialogTableVisibles = true
pinglun(data).then(res=>{ pinglun(data).then(res=>{
console.log(res) console.log(res)
this.pinglunlist = res.rows this.pinglunlist = res.data.records
this.pltotal = res.total this.pltotal = res.total
}) })
}, },
@ -469,13 +469,13 @@
this.loading = true; this.loading = true;
listMallPartners(this.queryParams).then(response => { listMallPartners(this.queryParams).then(response => {
this.mallPartnersList = response.rows; this.mallPartnersList = response.data.records;
console.log('查询合作商管理列表 ',this.mallPartnersList) console.log('查询合作商管理列表 ',this.mallPartnersList)
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
}); });
listCategory(this.queryParamss).then(responses => { listCategory(this.queryParamss).then(responses => {
this.options = responses.rows; this.options = responses.data.records;
}); });
}, },