赞
踩
1,这里用的是element-ui
分页的组件代码
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
layout="total, prev, pager, next"
:total="100"
style="margin-top: 20px">
</el-pagination>
size-change: pageSize 改变时会触发,也就是每页条数
current-change:currentPage 改变时会触发,也就是当前页
layout:组件布局,子组件名用逗号分隔
total: 数据的数量
2,在table组件添加一个page - size
handleSizeChange (val) {
this.PageSize = val
},
handleCurrentChange (val) {
this.currentPage = val
},
// 序号自增
indexMethod (index) {
return (this.currentPage - 1) * 10 + index + 1
},
序号自增是方便数据如果有id,可以直接变更数据顺序
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。