废话不多说,上代码
// DOM
<DatePicker style={{ width: '100%' }} disabledDate={disableDateOfMonth} picker="month" />
// 方法
// 不可用逻辑校验
const disableDateOfMonth = (current) => {
return !(
// 判断是否有值
current
// 判断当前时间大于某个时间
&& current > new Date(“某个时间')
// 判断当前时间是否小于当前月+六个月的时间
&& current < new Date(moment().subtract(-6, 'months').format())
);
};
代码仅供参考,如有错误,欢迎指出。