需求:设置时间选择器,只能选择2018-01-01之后切小于当前时间的数据 data() { return { pickerOptions0: { disabledDate: time => { // 使用2018年的毫秒时间戳判断 return time.getTime() Date.now(); } }, pickerOptions1: { disabledDate: time => { // 使用2018年的毫秒时间戳判断 return time.getTime() Date.now(); } } } } 在发送请求之前进行日期的判断,