0
点赞
收藏
分享

微信扫一扫

前端项目实战16-分页功能优化(直接绑在table上)

爱我中华8898 2022-08-27 阅读 64

 <Table pagination={_pagination}
columns={userColumns}
rowKey="id"
dataSource={userRoleList} />

分页

//分页 
const _pagination = {
total: totol,
onChange: onChange,
showTotal: () => {
return '共 ' + totol + ' 条记录';
},
}



举报

相关推荐

0 条评论