2015-08-27 13:20:31 +08:00
|
|
|
# 竖直方向的小型步骤条
|
|
|
|
|
|
|
|
- order: 5
|
|
|
|
|
|
|
|
简单的竖直方向的小型步骤条。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-11-25 17:35:49 +08:00
|
|
|
import { Steps } from 'antd';
|
2015-10-28 20:55:49 +08:00
|
|
|
const Step = Steps.Step;
|
2015-08-27 13:20:31 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const steps = [{
|
2015-08-27 13:20:31 +08:00
|
|
|
title: '已完成',
|
2015-09-01 15:30:51 +08:00
|
|
|
description: '这里是信息的描述'
|
2015-08-27 13:20:31 +08:00
|
|
|
}, {
|
|
|
|
title: '进行中',
|
2015-09-01 15:30:51 +08:00
|
|
|
description: '这里是信息的描述'
|
2015-08-27 13:20:31 +08:00
|
|
|
}, {
|
|
|
|
title: '待运行',
|
2015-09-01 15:30:51 +08:00
|
|
|
description: '这里是信息的描述'
|
2016-01-23 15:22:16 +08:00
|
|
|
}].map((s, i) => <Step key={i} title={s.title} description={s.description} />);
|
2015-08-27 13:20:31 +08:00
|
|
|
|
2015-12-16 15:25:15 +08:00
|
|
|
ReactDOM.render(<Steps size="small" direction="vertical" current={1}>{steps}</Steps>,
|
2015-12-29 12:08:58 +08:00
|
|
|
mountNode);
|
2015-08-27 13:20:31 +08:00
|
|
|
````
|