Showing
1 changed file
with
7 additions
and
3 deletions
| ... | @@ -487,10 +487,14 @@ export default { | ... | @@ -487,10 +487,14 @@ export default { |
| 487 | }, | 487 | }, |
| 488 | //某页 | 488 | //某页 |
| 489 | currentChange(val) { | 489 | currentChange(val) { |
| 490 | - this.$emit("currentChange", { | 490 | + this.$emit('currentChange', { |
| 491 | - page: val, | 491 | + pageIndex: val, |
| 492 | - start: val > 1 ? (val - 1) * this.limitSize + 1 : val, | 492 | + pageSize: this.sizes |
| 493 | }); | 493 | }); |
| 494 | + // this.$emit("currentChange", { | ||
| 495 | + // page: val, | ||
| 496 | + // start: val > 1 ? (val - 1) * this.limitSize + 1 : val, | ||
| 497 | + // }); | ||
| 494 | }, | 498 | }, |
| 495 | //表格发送编号 | 499 | //表格发送编号 |
| 496 | tableCurrentChange(currentRow, oldCurrentRow) {}, | 500 | tableCurrentChange(currentRow, oldCurrentRow) {}, | ... | ... |
-
Please register or login to post a comment