# 总数 - order: 9 通过设置 `showTotal` 展示总共有多少数据。 --- ````jsx import { Pagination, Select } from 'antd'; function showTotal(total) { return `共 ${total} 条`; } ReactDOM.render( , mountNode ); ````