| | |
| | | </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'?'新增':'编辑'" |
| | |
| | | Authorization: "Bearer " + getToken() |
| | | }, |
| | | total: 0, |
| | | queryParams: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | }, |
| | | addDialog: false, |
| | | dialogStatus: '', |
| | | dataForm: {}, |
| | |
| | | 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){ |