This commit is contained in:
Vinjor 2025-03-17 15:23:39 +08:00
parent 8bb08b7e71
commit c8f6bcec12

View File

@ -159,8 +159,8 @@ export default {
getList() {
this.loading = true;
listConfig(this.queryParams).then(response => {
this.configList = response.rows;
this.total = response.total;
this.configList = response.data.records;
this.total = response.data.total;
this.loading = false;
});
},