美文网首页
element UI 日期组件(DatePicker )禁止选择

element UI 日期组件(DatePicker )禁止选择

作者: 八妹sss | 来源:发表于2022-04-16 01:03 被阅读0次

1、所有日期中禁止选择周六周日

pickerOptions: {
  disabledDate (time) {
    return time.getDay() === 0 || time.getDay() === 6
}

2、今天及今天之前的日期禁止选择周六周日

pickerOptions: {
  disabledDate (time) {
    return (time.getTime() > Date.now() - 8.64e7) || (time.getDay() === 0 || time.getDay() === 6) 
  }
}

3、今天及今天之后的日期禁止选择周六周日

pickerOptions: {
  disabledDate (time) {
    return (time.getTime() < Date.now() - 8.64e7) || (time.getDay() === 0 || time.getDay() === 6) 
  }
}

相关文章

网友评论

      本文标题:element UI 日期组件(DatePicker )禁止选择

      本文链接:https://www.haomeiwen.com/subject/khecertx.html