ant-design/components/slider/demo/input-number.md

106 lines
1.9 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
2016-11-21 16:37:04 +08:00
title:
zh-CN: 带输入框的滑块
2016-11-21 16:37:04 +08:00
en-US: Slider with InputNumber
2016-03-31 09:40:55 +08:00
---
2015-07-14 12:06:44 +08:00
## zh-CN
2016-04-14 11:22:53 +08:00
和 [数字输入框](/components/input-number/) 组件保持同步。
2015-07-14 12:06:44 +08:00
## en-US
Synchronize with [InputNumber](/components/input-number/) component.
2019-05-07 14:57:32 +08:00
```jsx
import { Slider, InputNumber, Row, Col } from 'antd';
2015-07-14 12:06:44 +08:00
class IntegerStep extends React.Component {
state = {
inputValue: 1,
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
onChange = value => {
2015-07-14 12:06:44 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
inputValue: value,
2015-07-14 12:06:44 +08:00
});
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2015-07-14 12:06:44 +08:00
render() {
2018-08-02 16:13:22 +08:00
const { inputValue } = this.state;
2015-07-16 16:48:06 +08:00
return (
<Row>
<Col span={12}>
<Slider
min={1}
max={20}
onChange={this.onChange}
value={typeof inputValue === 'number' ? inputValue : 0}
/>
</Col>
<Col span={4}>
2017-05-15 14:37:22 +08:00
<InputNumber
min={1}
max={20}
style={{ marginLeft: 16 }}
2018-08-02 16:13:22 +08:00
value={inputValue}
2017-05-15 14:37:22 +08:00
onChange={this.onChange}
/>
</Col>
</Row>
2015-07-16 16:48:06 +08:00
);
}
}
2015-07-14 12:06:44 +08:00
class DecimalStep extends React.Component {
state = {
inputValue: 0,
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
onChange = value => {
2019-08-05 18:38:10 +08:00
if (isNaN(value)) {
return;
}
2015-11-23 16:16:54 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
inputValue: value,
2015-11-23 16:16:54 +08:00
});
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
2015-11-23 16:16:54 +08:00
render() {
2018-08-02 16:13:22 +08:00
const { inputValue } = this.state;
2015-11-23 16:16:54 +08:00
return (
<Row>
<Col span={12}>
2018-08-02 16:13:22 +08:00
<Slider
min={0}
max={1}
onChange={this.onChange}
value={typeof inputValue === 'number' ? inputValue : 0}
2018-08-02 16:13:22 +08:00
step={0.01}
/>
</Col>
<Col span={4}>
2017-05-15 14:37:22 +08:00
<InputNumber
min={0}
max={1}
style={{ marginLeft: 16 }}
step={0.01}
2018-08-02 16:13:22 +08:00
value={inputValue}
2017-05-15 14:37:22 +08:00
onChange={this.onChange}
/>
</Col>
</Row>
2015-11-23 16:16:54 +08:00
);
}
}
2015-11-23 16:16:54 +08:00
2016-11-21 16:37:04 +08:00
ReactDOM.render(
<div>
<IntegerStep />
<DecimalStep />
2018-06-27 15:55:04 +08:00
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```