This commit is contained in:
PQZ 2025-03-17 16:00:50 +08:00
parent 4e2dcecfa3
commit a4a4434d2f
5 changed files with 14 additions and 14 deletions

View File

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

View File

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

View File

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

View File

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

View File

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