<Table pagination={_pagination}
columns={userColumns}
rowKey="id"
dataSource={userRoleList} />
//分頁
const _pagination = {
total: totol,
onChange: onChange,
showTotal: () => {
return '共 ' + totol + ' 條記錄';
},
}