实现日期选择只能选中日期前后半年

142 阅读1分钟

ele el-date-picker type="daterange"
:picker-options="pickerOptions"

属性 choiceDate:"", pickerOptions:{ onPick: ({ maxDate, minDate }) => { console.log(maxDate) this.choiceDate = minDate.getTime(); if (maxDate) { this.choiceDate = ''; } }, disabledDate: (time) => { if (this.choiceDate!== '') { const one = 6*30 * 24 * 3600 * 1000; const minTime = this.choiceDate - one; const maxTime = this.choiceDate+one; return time.getTime() < minTime || time.getTime() > maxTime; } } },