elmentUI 选择年月日时分秒-并且只选择当前时间之后的时间

Posted shuihanxiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elmentUI 选择年月日时分秒-并且只选择当前时间之后的时间相关的知识,希望对你有一定的参考价值。

 pickerBeginDateBefore: {
        disabledDate(value) {
          if (new Date(value).getTime() + 3600 * 1000 * 24 < new Date().getTime()) {
            return true
          }
          return false
        }
      },

.vue

             <el-date-picker
                 :picker-options="pickerBeginDateBefore"
                  v-model="ruleForm.deliverTime"
                  type="datetime"
                  value-format="yyyy-MM-dd HH:mm:ss"
                  :startDate="{now}"
                  placeholder="选择时间">
                </el-date-picker>        

 

只选择时分秒

 <el-time-picker
                  v-model="ruleForm.deliverTime"
                  :picker-options="{
                    selectableRange: 00:00:01 - 23:59:59
                  }"
                  placeholder="选择时间">
                </el-time-picker>

 

以上是关于elmentUI 选择年月日时分秒-并且只选择当前时间之后的时间的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序自定义picker年月日时分秒选择器组件

iOS年月日时分秒选择器

iOS年月日时分秒选择器

iOS年月日时分秒选择器

java如何获取当前时间 年月日 时分秒

js获取当前当前年月日时分秒,以及获取年月日(无时分秒),详情见补充!