ant-design/components/calendar/index.zh-CN.md

49 lines
2.1 KiB
Markdown
Raw Normal View History

2016-03-31 14:17:09 +08:00
---
category: Components
type: Data Display
2016-09-21 11:28:38 +08:00
subtitle: 日历
2016-03-31 14:17:09 +08:00
cols: 1
2016-09-21 11:28:38 +08:00
title: Calendar
2016-03-31 14:17:09 +08:00
---
2015-11-11 00:15:12 +08:00
2015-11-13 18:20:22 +08:00
按照日历形式展示数据的容器。
2015-11-11 00:15:12 +08:00
## 何时使用
2015-11-13 18:20:22 +08:00
当数据是日期或按照日期划分时,例如日程、课表、价格日历等,农历等。目前支持年/月切换。
2015-11-11 00:15:12 +08:00
## API
**注意:**Calendar 部分 locale 是从 value 中读取,所以请先正确设置 moment 的 locale。
```jsx
// 默认语言为 en-US所以如果需要使用其他语言推荐在入口文件全局设置 locale
// import moment from 'moment';
// import 'moment/locale/zh-cn';
// moment.locale('zh-cn');
2015-11-13 19:56:34 +08:00
<Calendar
dateCellRender={dateCellRender}
monthCellRender={monthCellRender}
2015-11-15 21:40:01 +08:00
onPanelChange={onPanelChange}
onSelect={onSelect}
2015-11-13 19:56:34 +08:00
/>
2015-11-11 00:15:12 +08:00
```
2017-10-25 10:25:44 +08:00
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| dateCellRender | 自定义渲染日期单元格,返回内容会被追加到单元格 | function(date: moment): ReactNode | 无 |
| dateFullCellRender | 自定义渲染日期单元格,返回内容覆盖单元格 | function(date: moment): ReactNode | 无 |
| defaultValue | 默认展示的日期 | [moment](http://momentjs.com/) | 默认日期 |
| disabledDate | 不可选择的日期 | (currentDate: moment) => boolean | 无 |
2017-10-25 10:25:44 +08:00
| fullscreen | 是否全屏显示 | boolean | true |
| locale | 国际化配置 | object | [默认配置](https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json) |
| mode | 初始模式,`month/year` | string | month |
| monthCellRender | 自定义渲染月单元格,返回内容会被追加到单元格 | function(date: moment): ReactNode | 无 |
| monthFullCellRender | 自定义渲染月单元格,返回内容覆盖单元格 | function(date: moment): ReactNode | 无 |
2018-03-09 17:55:49 +08:00
| validRange | 设置可以显示的日期 | \[[moment](http://momentjs.com/), [moment](http://momentjs.com/)] | 无 |
2017-10-25 10:25:44 +08:00
| value | 展示日期 | [moment](http://momentjs.com/) | 当前日期 |
| onPanelChange | 日期面板变化回调 | function(date: moment, mode: string) | 无 |
| onSelect | 点击选择日期回调 | function(date: moment | 无 |
2018-07-27 10:45:49 +08:00
| onChange | 日期变化回调 | function(date: moment | 无 |