2017-08-30 14:02:49 +08:00
|
|
|
---
|
2020-03-30 10:50:29 +08:00
|
|
|
order: 11
|
2017-08-30 14:02:49 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 上一步和下一步
|
|
|
|
en-US: Prev and next
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
修改上一步和下一步为文字链接。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use text link for prev and next button.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2017-08-30 14:02:49 +08:00
|
|
|
import { Pagination } from 'antd';
|
|
|
|
|
|
|
|
function itemRender(current, type, originalElement) {
|
|
|
|
if (type === 'prev') {
|
|
|
|
return <a>Previous</a>;
|
2019-05-07 14:57:32 +08:00
|
|
|
}
|
|
|
|
if (type === 'next') {
|
2017-08-30 14:02:49 +08:00
|
|
|
return <a>Next</a>;
|
|
|
|
}
|
|
|
|
return originalElement;
|
|
|
|
}
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => <Pagination total={500} itemRender={itemRender} />;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|