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

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

分页

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

posted @ 2022-08-20 21:55  前端导师歌谣  阅读(22)  评论(0)    收藏  举报