2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 1
|
2016-11-21 16:37:04 +08:00
|
|
|
title:
|
2016-07-21 09:51:04 +08:00
|
|
|
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
|
|
|
|
2016-07-21 09:51:04 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-04-14 11:22:53 +08:00
|
|
|
和 [数字输入框](/components/input-number/) 组件保持同步。
|
2015-07-14 12:06:44 +08:00
|
|
|
|
2016-07-21 09:51:04 +08:00
|
|
|
## en-US
|
|
|
|
|
2018-04-11 23:18:10 +08:00
|
|
|
Synchronize with [InputNumber](/components/input-number/) component.
|
2016-07-21 09:51:04 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
|
|
|
import { Slider, InputNumber, Row, Col } from 'antd';
|
2015-07-14 12:06:44 +08:00
|
|
|
|
2017-02-20 22:19:59 +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 (
|
2016-04-27 20:44:36 +08:00
|
|
|
<Row>
|
|
|
|
<Col span={12}>
|
2018-09-11 23:32:17 +08:00
|
|
|
<Slider
|
|
|
|
min={1}
|
|
|
|
max={20}
|
|
|
|
onChange={this.onChange}
|
|
|
|
value={typeof inputValue === 'number' ? inputValue : 0}
|
|
|
|
/>
|
2016-04-27 20:44:36 +08:00
|
|
|
</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}
|
2016-06-06 13:54:10 +08:00
|
|
|
/>
|
2016-04-27 20:44:36 +08:00
|
|
|
</Col>
|
|
|
|
</Row>
|
2015-07-16 16:48:06 +08:00
|
|
|
);
|
2017-02-20 22:19:59 +08:00
|
|
|
}
|
|
|
|
}
|
2015-07-14 12:06:44 +08:00
|
|
|
|
2017-02-20 22:19:59 +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)) {
|
2018-08-02 16:24:13 +08:00
|
|
|
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 (
|
2016-04-27 20:44:36 +08:00
|
|
|
<Row>
|
|
|
|
<Col span={12}>
|
2018-08-02 16:13:22 +08:00
|
|
|
<Slider
|
|
|
|
min={0}
|
|
|
|
max={1}
|
|
|
|
onChange={this.onChange}
|
2018-09-11 23:32:17 +08:00
|
|
|
value={typeof inputValue === 'number' ? inputValue : 0}
|
2018-08-02 16:13:22 +08:00
|
|
|
step={0.01}
|
|
|
|
/>
|
2016-04-27 20:44:36 +08:00
|
|
|
</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}
|
2016-06-06 13:54:10 +08:00
|
|
|
/>
|
2016-04-27 20:44:36 +08:00
|
|
|
</Col>
|
|
|
|
</Row>
|
2015-11-23 16:16:54 +08:00
|
|
|
);
|
2017-02-20 22:19:59 +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
|
|
|
```
|