You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
661 B
Markdown
28 lines
661 B
Markdown
9 years ago
|
---
|
||
|
order: 6
|
||
|
title: 发生错误
|
||
|
---
|
||
|
|
||
|
使用 Steps 的 `status` 属性来指定当前步骤的状态。
|
||
|
|
||
|
````jsx
|
||
|
import { Steps } from 'antd';
|
||
|
const Step = Steps.Step;
|
||
|
|
||
|
const steps = [{
|
||
|
title: '已完成',
|
||
|
description: '这里是多信息的描述啊'
|
||
|
}, {
|
||
|
title: '错误示例',
|
||
|
description: '这里是多信息的耶哦耶哦哦耶哦耶'
|
||
|
}, {
|
||
|
title: '又一个待运行',
|
||
|
description: '描述啊描述啊'
|
||
|
}, {
|
||
|
title: '待运行',
|
||
|
description: '这里是多信息的描述啊'
|
||
|
}].map((s, i) => <Step key={i} title={s.title} description={s.description} />);
|
||
|
|
||
|
ReactDOM.render(<Steps current={1} status="error">{steps}</Steps>, mountNode);
|
||
|
````
|