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

@ -121,7 +121,7 @@
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
@ -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;
});
},

View File

@ -135,7 +135,7 @@
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
@ -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;
});
},

View File

@ -90,7 +90,7 @@
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
@ -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;
});
},

View File

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

View File

@ -89,7 +89,7 @@
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
@ -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;
});
},