马宇豪
2025-03-07 db905ecd14f63dba9337b4f4715584ef2d7e8c7e
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){