diff --git a/src/views/inspection/inspection/PartnerManagement/index.vue b/src/views/inspection/inspection/PartnerManagement/index.vue index d0410d4..8e9dbef 100644 --- a/src/views/inspection/inspection/PartnerManagement/index.vue +++ b/src/views/inspection/inspection/PartnerManagement/index.vue @@ -429,7 +429,7 @@ this.dialogTableVisibles = true pinglun(data).then(res=>{ console.log(res) - this.pinglunlist = res.rows + this.pinglunlist = res.data.records this.pltotal = res.total }) }, @@ -444,7 +444,7 @@ this.dialogTableVisibles = true pinglun(data).then(res=>{ console.log(res) - this.pinglunlist = res.rows + this.pinglunlist = res.data.records this.pltotal = res.total }) }, @@ -469,13 +469,13 @@ this.loading = true; listMallPartners(this.queryParams).then(response => { - this.mallPartnersList = response.rows; + this.mallPartnersList = response.data.records; console.log('查询合作商管理列表 ',this.mallPartnersList) this.total = response.total; this.loading = false; }); listCategory(this.queryParamss).then(responses => { - this.options = responses.rows; + this.options = responses.data.records; }); },