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() { getList() {
this.loading = true; this.loading = true;
listConfig(this.queryParams).then(response => { listConfig(this.queryParams).then(response => {
this.configList = response.rows; this.configList = response.data.records;
this.total = response.total; this.total = response.data.total;
this.loading = false; this.loading = false;
}); });
}, },