ant-design/components/steps/demo/step-next.md

114 lines
2.1 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-07-21 10:07:30 +08:00
title:
zh-CN: 步骤切换
en-US: Switch Step
2016-03-31 09:40:55 +08:00
---
2015-06-25 16:01:04 +08:00
2016-07-21 10:07:30 +08:00
## zh-CN
通常配合内容及按钮使用,表示一个流程的处理进度。
2015-06-25 20:01:20 +08:00
2016-07-21 10:07:30 +08:00
## en-US
Cooperate with the content and buttons, to represent the progress of a process.
2016-07-21 10:07:30 +08:00
2019-05-07 14:57:32 +08:00
```jsx
import { Steps, Button, message } from 'antd';
2018-06-27 15:55:04 +08:00
const { Step } = Steps;
2019-05-07 14:57:32 +08:00
const steps = [
{
title: 'First',
content: 'First-content',
},
{
title: 'Second',
content: 'Second-content',
},
{
title: 'Last',
content: 'Last-content',
},
];
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
current: 0,
};
}
2018-06-27 15:55:04 +08:00
2015-09-16 16:28:57 +08:00
next() {
const current = this.state.current + 1;
this.setState({ current });
}
2018-06-27 15:55:04 +08:00
prev() {
const current = this.state.current - 1;
2016-07-21 14:20:49 +08:00
this.setState({ current });
}
2018-06-27 15:55:04 +08:00
2015-06-25 18:12:42 +08:00
render() {
2016-07-21 14:20:49 +08:00
const { current } = this.state;
2015-09-16 16:28:57 +08:00
return (
<>
2016-07-21 14:20:49 +08:00
<Steps current={current}>
2019-05-07 14:57:32 +08:00
{steps.map(item => (
<Step key={item.title} title={item.title} />
))}
2015-09-16 16:28:57 +08:00
</Steps>
<div className="steps-content">{steps[current].content}</div>
<div className="steps-action">
2019-05-07 14:57:32 +08:00
{current < steps.length - 1 && (
<Button type="primary" onClick={() => this.next()}>
Next
</Button>
)}
{current === steps.length - 1 && (
<Button type="primary" onClick={() => message.success('Processing complete!')}>
Done
</Button>
)}
{current > 0 && (
<Button style={{ margin: '0 8px' }} onClick={() => this.prev()}>
Previous
</Button>
2019-05-07 14:57:32 +08:00
)}
2015-09-16 16:28:57 +08:00
</div>
</>
2015-09-16 16:28:57 +08:00
);
}
}
2015-06-25 18:12:42 +08:00
ReactDOM.render(<App />, mountNode);
2019-05-07 14:57:32 +08:00
```
2019-05-07 14:57:32 +08:00
```css
.steps-content {
margin-top: 16px;
border: 1px dashed #e9e9e9;
2019-12-23 20:07:56 +08:00
border-radius: 2px;
background-color: #fafafa;
min-height: 200px;
text-align: center;
padding-top: 80px;
}
.steps-action {
margin-top: 24px;
}
2019-05-07 14:57:32 +08:00
```
2019-12-25 22:13:04 +08:00
<style>
[data-theme="dark"] .steps-content {
margin-top: 16px;
border: 1px dashed #303030;
background-color: rgba(255,255,255,0.04);
color: rgba(255,255,255,0.65);
padding-top: 80px;
}
</style>