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.

57 lines
1.2 KiB

---
order: 3
title: 切换到下一步
---
10 years ago
9 years ago
随机生成 3~6 个步骤,初始随机进行到其中一个步骤。
10 years ago
````css
#components-steps-demo-step-next > div > div {
margin-bottom: 30px;
10 years ago
}
````
10 years ago
````jsx
import { Steps, Button } from 'antd';
const Step = Steps.Step;
const array = Array.apply(null, Array(Math.floor(Math.random() * 3) + 3));
const steps = array.map((item, i) => {
return {
title: `步骤${i + 1}`,
};
});
10 years ago
const App = React.createClass({
10 years ago
getInitialState() {
return {
currentStep: Math.floor(Math.random() * steps.length),
};
10 years ago
},
next() {
let s = this.state.currentStep + 1;
10 years ago
if (s === steps.length) {
s = 0;
}
this.setState({
currentStep: s,
10 years ago
});
},
render() {
const cs = this.state.currentStep;
return (
<div>
<div style={{ marginBottom: 24 }}>当前正在执行第 {cs + 1} 步</div>
<Steps current={cs}>
{steps.map((s, i) => <Step key={i} title={s.title} description={s.description} />)}
</Steps>
<div style={{ marginTop: 24 }}>
<Button onClick={this.next}>下一步</Button>
</div>
</div>
);
},
10 years ago
});
ReactDOM.render(<App />, mountNode);
10 years ago
````