diff --git a/src/views/source/index.vue b/src/views/source/index.vue index 7ea56a7..799c81b 100644 --- a/src/views/source/index.vue +++ b/src/views/source/index.vue @@ -233,8 +233,8 @@ export default { getList() { this.loading = true; listSource(this.queryParams).then(response => { - this.sourceList = response.rows; - this.total = response.total; + this.sourceList = response.data.rows; + this.total = response.data.total; this.loading = false; }); },