React --antDesign DatePicker属性 disabledDate 禁用日期

handleData(time){
		if(!time){
			return false
		}else{
		// 大于当前日期不能选 time > moment()
		// 小于当前日期不能选 time < moment().subtract(1, "days")
		// 只能选前7后7 time < moment().subtract(7, "days") || time > moment().add(7, 'd')
			return time < moment().subtract(7, "days") || time > moment().add(7, 'd')
		}
	}

 

你可能感兴趣的:(antDesign)