1
This commit is contained in:
parent
4e2dcecfa3
commit
a4a4434d2f
@ -226,8 +226,8 @@ export default {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listApply(this.queryParams).then(response => {
|
||||
this.applyList = response.rows;
|
||||
this.total = response.total;
|
||||
this.applyList = response.data.records;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
@ -271,8 +271,8 @@ export default {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listOrder(this.queryParams).then(response => {
|
||||
this.orderList = response.rows;
|
||||
this.total = response.total;
|
||||
this.orderList = response.data.records;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
@ -176,8 +176,8 @@ export default {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listPoints(this.queryParams).then(response => {
|
||||
this.pointsList = response.rows;
|
||||
this.total = response.total;
|
||||
this.pointsList = response.data.records;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
@ -178,8 +178,8 @@ export default {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listRights(this.queryParams).then(response => {
|
||||
this.rightsList = response.rows;
|
||||
this.total = response.total;
|
||||
this.rightsList = response.data.records;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
@ -181,8 +181,8 @@ export default {
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listMember(this.queryParams).then(response => {
|
||||
this.memberList = response.rows;
|
||||
this.total = response.total;
|
||||
this.memberList = response.data.records;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user