添加测试连接功能

master
冷调 2024-08-23 21:59:59 +08:00
parent 4749599acf
commit afe165a922
1 changed files with 2 additions and 2 deletions

View File

@ -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;
});
},