2016-11-07 16:31:15 +08:00
|
|
|
---
|
|
|
|
order: 8
|
|
|
|
title:
|
2016-11-15 17:16:20 +08:00
|
|
|
zh-CN: 预设范围
|
2019-08-29 15:07:35 +08:00
|
|
|
en-US: Preset Ranges
|
2016-11-07 16:31:15 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2018-08-04 12:04:07 +08:00
|
|
|
可以预设常用的日期范围以提高用户体验。
|
2016-11-07 16:31:15 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2019-08-29 15:07:35 +08:00
|
|
|
We can set preset ranges to RangePicker to improve user experience.
|
2016-11-07 16:31:15 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2020-07-30 19:17:34 +08:00
|
|
|
import { DatePicker, Space } from 'antd';
|
2016-11-07 16:31:15 +08:00
|
|
|
import moment from 'moment';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-05-27 21:32:45 +08:00
|
|
|
const { RangePicker } = DatePicker;
|
2016-11-07 16:31:15 +08:00
|
|
|
|
|
|
|
function onChange(dates, dateStrings) {
|
|
|
|
console.log('From: ', dates[0], ', to: ', dates[1]);
|
|
|
|
console.log('From: ', dateStrings[0], ', to: ', dateStrings[1]);
|
|
|
|
}
|
2017-05-15 16:36:07 +08:00
|
|
|
|
2016-11-07 16:31:15 +08:00
|
|
|
ReactDOM.render(
|
2020-07-30 19:17:34 +08:00
|
|
|
<Space direction="vertical" size={12}>
|
2016-11-07 16:31:15 +08:00
|
|
|
<RangePicker
|
2019-05-07 14:57:32 +08:00
|
|
|
ranges={{
|
|
|
|
Today: [moment(), moment()],
|
|
|
|
'This Month': [moment().startOf('month'), moment().endOf('month')],
|
|
|
|
}}
|
2016-11-15 17:16:20 +08:00
|
|
|
onChange={onChange}
|
2016-11-07 16:31:15 +08:00
|
|
|
/>
|
|
|
|
<RangePicker
|
2019-05-07 14:57:32 +08:00
|
|
|
ranges={{
|
|
|
|
Today: [moment(), moment()],
|
|
|
|
'This Month': [moment().startOf('month'), moment().endOf('month')],
|
|
|
|
}}
|
2017-05-15 14:37:22 +08:00
|
|
|
showTime
|
|
|
|
format="YYYY/MM/DD HH:mm:ss"
|
|
|
|
onChange={onChange}
|
2016-11-07 16:31:15 +08:00
|
|
|
/>
|
2020-07-30 19:17:34 +08:00
|
|
|
</Space>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2016-11-07 16:31:15 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|