--- order: 2 title: zh-CN: 通知事项日历演示 en-US: A demo of Notice Calendar --- ## zh-CN 一个复杂的应用示例。 ## en-US A complex application. ````jsx import { Calendar } from 'antd'; function getListData(value) { let listData; switch (value.date()) { case 8: listData = [ { type: 'warning', content: 'This is warning event.' }, { type: 'normal', content: 'This is usual event.' }, ]; break; case 10: listData = [ { type: 'warning', content: 'This is warning event.' }, { type: 'normal', content: 'This is usual event.' }, { type: 'error', content: 'This is error event.' }, ]; break; case 15: listData = [ { type: 'warning', content: 'This is warning event' }, { type: 'normal', content: 'This is very long usual event。。....' }, { type: 'error', content: 'This is error event.' }, { type: 'error', content: 'This is error event.' }, { type: 'error', content: 'This is error event.' }, { type: 'error', content: 'This is error event.' }, ]; break; default: } return listData || []; } function dateCellRender(value) { const listData = getListData(value); return ( ); } function getMonthData(value) { if (value.month() === 8) { return 1394; } } function monthCellRender(value) { const num = getMonthData(value); return num ?
{num}
Backlog number
: null; } ReactDOM.render( , mountNode); ```` ````css .events { line-height: 24px; list-style: none; margin: 0; padding: 0; } .events li { color: #999; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .events li span { vertical-align: middle; } .events li span:first-child { font-size: 9px; margin-right: 4px; } .event-warning { color: #fac450; } .event-normal { color: #2db7f5; } .event-error { color: #f50; } .notes-month { text-align: center; } .notes-month section { font-size: 28px; } ````