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
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
|
|
|
import React, { useState } from 'react';
|
2019-05-07 14:57:32 +08:00
|
|
|
import { Slider, InputNumber, Row, Col } from 'antd';
|
2015-07-14 12:06:44 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const IntegerStep = () => {
|
|
|
|
const [inputValue, setInputValue] = useState(1);
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const onChange = (newValue: number) => {
|
|
|
|
setInputValue(newValue);
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
return (
|
|
|
|
<Row>
|
|
|
|
<Col span={12}>
|
|
|
|
<Slider
|
|
|
|
min={1}
|
|
|
|
max={20}
|
|
|
|
onChange={onChange}
|
|
|
|
value={typeof inputValue === 'number' ? inputValue : 0}
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
<Col span={4}>
|
|
|
|
<InputNumber
|
|
|
|
min={1}
|
|
|
|
max={20}
|
|
|
|
style={{ margin: '0 16px' }}
|
|
|
|
value={inputValue}
|
|
|
|
onChange={onChange}
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
);
|
|
|
|
};
|
2015-07-14 12:06:44 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const DecimalStep = () => {
|
|
|
|
const [inputValue, setInputValue] = useState(0);
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const onChange = (value: number) => {
|
2019-08-05 18:38:10 +08:00
|
|
|
if (isNaN(value)) {
|
2018-08-02 16:24:13 +08:00
|
|
|
return;
|
|
|
|
}
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
setInputValue(value);
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
return (
|
|
|
|
<Row>
|
|
|
|
<Col span={12}>
|
|
|
|
<Slider
|
|
|
|
min={0}
|
|
|
|
max={1}
|
|
|
|
onChange={onChange}
|
|
|
|
value={typeof inputValue === 'number' ? inputValue : 0}
|
|
|
|
step={0.01}
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
<Col span={4}>
|
|
|
|
<InputNumber
|
|
|
|
min={0}
|
|
|
|
max={1}
|
|
|
|
style={{ margin: '0 16px' }}
|
|
|
|
step={0.01}
|
|
|
|
value={inputValue}
|
|
|
|
onChange={onChange}
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
);
|
|
|
|
};
|
2015-11-23 16:16:54 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2016-11-21 16:37:04 +08:00
|
|
|
<div>
|
|
|
|
<IntegerStep />
|
|
|
|
<DecimalStep />
|
2022-04-03 23:27:45 +08:00
|
|
|
</div>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|