|
|
@ -364,9 +364,13 @@ const Page: FC<PageProps> = () => {
|
|
|
|
total: total,
|
|
|
|
total: total,
|
|
|
|
current: params.page,
|
|
|
|
current: params.page,
|
|
|
|
showQuickJumper: true,
|
|
|
|
showQuickJumper: true,
|
|
|
|
hideOnSinglePage: false,
|
|
|
|
hideOnSinglePage: true,
|
|
|
|
position: ['bottomCenter'],
|
|
|
|
position: ['bottomCenter'],
|
|
|
|
// showTotal: total => <span className="mr10">共<span>{total}</span>条数据</span>
|
|
|
|
showTotal: (total) => (
|
|
|
|
|
|
|
|
<span className="mr10">
|
|
|
|
|
|
|
|
共<span>{total}</span>条数据
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
),
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|