当前位置: 代码迷 >> 综合 >> antd DatePicker不可选范围
  详细解决方案

antd DatePicker不可选范围

热度:84   发布时间:2023-10-23 12:12:06.0

废话不多说,上代码

// 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()));};

代码仅供参考,如有错误,欢迎指出。

  相关解决方案