Commit c0b9421b authored by 前端-黄佳鑫's avatar 前端-黄佳鑫

fix: 管理下级会员表格分页total的展示问题

parent ba72b118
......@@ -459,7 +459,15 @@ const SalesmanBindAdded = (props) => {
rowSelection={pageStatus !== PageStatus.PREVIEW && realRowSelection}
rowKey='relationId'
tableProps={{
dataSource: fliterTableData
dataSource: fliterTableData,
pagination: {
showSizeChanger: true,
showQuickJumper: true,
size: 'small',
pageSizeOptions: ['10', '20', '50', '100'],
total: fliterTableData.length,
showTotal: () => intl.formatMessage({ id: 'componnets.standardTablePages' }, { totalPage: fliterTableData.length }),
}
}}
/>
</CardLayout>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment