You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
801 B
38 lines
801 B
9 years ago
|
# 自定义状态
|
||
|
|
||
|
- order: 10
|
||
|
|
||
|
可以使用 `status` 定义每个步骤的状态。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var Steps = antd.Steps;
|
||
|
var Step = Steps.Step;
|
||
|
var container = document.getElementById('components-steps-demo-status');
|
||
|
|
||
|
var steps = [{
|
||
|
status: 'finish',
|
||
|
title: '已完成',
|
||
|
description: '这里是多信息的描述啊'
|
||
|
}, {
|
||
|
status: 'process',
|
||
|
title: '进行中',
|
||
|
description: '这里是多信息的耶哦耶哦哦耶哦耶'
|
||
|
}, {
|
||
|
status: 'wait',
|
||
|
title: '又一个待运行',
|
||
|
description: '描述啊描述啊'
|
||
|
}, {
|
||
|
status: 'wait',
|
||
|
title: '待运行',
|
||
|
description: '这里是多信息的描述啊'
|
||
|
}].map(function(s, i) {
|
||
|
return (
|
||
|
<Step key={i} title={s.title} status={s.status} description={s.description} />
|
||
|
);
|
||
|
});
|
||
|
|
||
|
React.render(<Steps>{steps}</Steps>, container);
|
||
|
````
|