码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-07-27 23:35:01      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:bsp   ons   begin   年月日   isa   led   format   nbsp   color   

 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 选择年月日时分秒-并且只选择当前时间之后的时间

标签:bsp   ons   begin   年月日   isa   led   format   nbsp   color   

原文地址:https://www.cnblogs.com/shuihanxiao/p/13386391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!