--- 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.getDayOfMonth()) { case 8: listData = [ { type: 'warning', content: '这里是警告事项.' }, { type: 'normal', content: '这里是普通事项.' }, ]; break; case 10: listData = [ { type: 'warning', content: '这里是警告事项.' }, { type: 'normal', content: '这里是普通事项.' }, { type: 'error', content: '这里是错误事项.' }, ]; break; case 15: listData = [ { type: 'warning', content: '这里是警告事项.' }, { type: 'normal', content: '这里是普通事项好长啊。。....' }, { type: 'error', content: '这里是错误事项.' }, { type: 'error', content: '这里是错误事项.' }, { type: 'error', content: '这里是错误事项.' }, { type: 'error', content: '这里是错误事项.' }, ]; break; default: } return listData || []; } function dateCellRender(value) { const listData = getListData(value); return (