@@ -73,8 +73,8 @@ export default {
let req = {...searchForm, ...this.pageInfo}
this.loading = true
Page(req).then(res => {
- this.data = res.records
- this.pageInfo.total = res.total
+ this.data = res.data.records
+ this.pageInfo.total = res.data.total
this.loading = false
})
},