antDesignVue 时间选择框,不可选过去或未来时间

antDesignVue 时间选择框


  1. 不可选过去或未来的时间
disabledDate (current) { // 不可选过去时间 return current < moment().add(-1, 'd'); // 不可选未来时间 return current && current > Date.now(); },

  1. 表单中判断所选时间是否符合要求,若不符合清空所选时间并提示错误信息
timeOk (date) { if(date < moment()) { console.log('无效时间,请重新选择') this.form.setFields({stopTime:{ value: undefined, errors: [new Error('无效时间,请重新选择')] }}) } },

    推荐阅读