|
|
@ -114,8 +114,8 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
|
|
|
|
<pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size" |
|
|
|
@pagination="pagination" style="padding-bottom: 100px;" /> |
|
|
|
<pagination :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" |
|
|
|
@pagination="pagination2" style="padding-bottom: 100px;" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</el-tab-pane> |
|
|
@ -253,6 +253,11 @@ |
|
|
|
this.page.size = val.pageSize |
|
|
|
this.getPageList(this.page) |
|
|
|
}, |
|
|
|
pagination2(val) { // 分页 |
|
|
|
this.listQuery.current = val.pageNum |
|
|
|
this.listQuery.size = val.pageSize |
|
|
|
this.getPageList2(this.listQuery) |
|
|
|
}, |
|
|
|
selectTime1(val) { |
|
|
|
|
|
|
|
console.log('selectTime1:', val) |
|
|
|