2015-06-15 14:43:27 +08:00
|
|
|
# 进度条
|
2015-06-14 12:55:44 +08:00
|
|
|
|
|
|
|
- order: 0
|
|
|
|
|
2015-06-15 14:43:27 +08:00
|
|
|
标准的进度条。
|
2015-06-14 12:55:44 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-11-19 13:42:10 +08:00
|
|
|
import { Progress, Icon } from 'antd';
|
2015-10-28 20:55:49 +08:00
|
|
|
const ProgressLine = Progress.Line;
|
2015-06-14 12:55:44 +08:00
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-06-14 19:50:23 +08:00
|
|
|
<div>
|
2015-10-28 20:55:49 +08:00
|
|
|
<ProgressLine percent={30} />
|
|
|
|
<ProgressLine percent={50} status="active" />
|
2015-11-19 13:42:10 +08:00
|
|
|
<ProgressLine percent={70} status="exception" format={<Icon type="exclamation" />} />
|
2015-10-28 20:55:49 +08:00
|
|
|
<ProgressLine percent={100} />
|
|
|
|
<ProgressLine percent={50} showInfo={false} />
|
2015-06-14 19:50:23 +08:00
|
|
|
</div>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-06-14 12:55:44 +08:00
|
|
|
````
|