ant-design/components/steps/demo/customized-progress-dot.md

43 lines
842 B
Markdown
Raw Normal View History

---
order: 9
title:
zh-CN: 自定义点状步骤条
en-US: Customized Dot Style
---
## zh-CN
为点状步骤条增加自定义展示。
## en-US
You can customize the display for Steps with progress dot style.
2019-05-07 14:57:32 +08:00
```jsx
import { Steps, Popover } from 'antd';
2018-06-27 15:55:04 +08:00
const { Step } = Steps;
2017-01-23 16:09:34 +08:00
const customDot = (dot, { status, index }) => (
2019-05-07 14:57:32 +08:00
<Popover
content={
<span>
step {index} status: {status}
</span>
}
>
2017-01-23 16:09:34 +08:00
{dot}
</Popover>
);
ReactDOM.render(
<Steps current={1} progressDot={customDot}>
<Step title="Finished" description="You can hover on the dot." />
<Step title="In Progress" description="You can hover on the dot." />
<Step title="Waiting" description="You can hover on the dot." />
<Step title="Waiting" description="You can hover on the dot." />
2018-06-27 15:55:04 +08:00
</Steps>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```