chentaisen 2024-08-23 22:06:36 +08:00
commit a4d6ad0c78
1 changed files with 2 additions and 2 deletions

View File

@ -233,8 +233,8 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
listSource(this.queryParams).then(response => { listSource(this.queryParams).then(response => {
this.sourceList = response.rows; this.sourceList = response.data.rows;
this.total = response.total; this.total = response.data.total;
this.loading = false; this.loading = false;
}); });
}, },