From db905ecd14f63dba9337b4f4715584ef2d7e8c7e Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期五, 07 三月 2025 14:45:00 +0800 Subject: [PATCH] 修改 --- src/views/specialOperationsPay/coalPay/components/studentDialog.vue | 15 ++------------- 1 files changed, 2 insertions(+), 13 deletions(-) diff --git a/src/views/specialOperationsPay/coalPay/components/studentDialog.vue b/src/views/specialOperationsPay/coalPay/components/studentDialog.vue index d1f8f2e..867c2f6 100644 --- a/src/views/specialOperationsPay/coalPay/components/studentDialog.vue +++ b/src/views/specialOperationsPay/coalPay/components/studentDialog.vue @@ -118,13 +118,6 @@ </template> </el-table-column> </el-table> - <pagination - v-show="total>0" - :total="total" - :page.sync="queryParams.pageNum" - :limit.sync="queryParams.pageSize" - @pagination="getStuList" - /> </el-dialog> <el-dialog :title="dialogStatus==='add'?'新增':'编辑'" @@ -262,10 +255,6 @@ Authorization: "Bearer " + getToken() }, total: 0, - queryParams: { - pageNum: 1, - pageSize: 10, - }, addDialog: false, dialogStatus: '', dataForm: {}, @@ -320,8 +309,8 @@ getStuList(id) { getCoalPayStudentList(id).then(res=>{ if(res.code == 200){ - this.stuList = res.rows - this.total = res.total + this.stuList = res.data + this.total = res.data.length this.stuInfo.totalCountFee = this.stuInfo.amount * this.total this.stuInfo.totalCount = this.total if(this.total == 0){ -- Gitblit v1.9.2