首页 > 其他 > 详细

ElementUI 时间控件

时间:2018-03-27 18:01:28      阅读:764      评论:0      收藏:0      [点我收藏+]
<template>
  <div class="block">
    <span class="demonstration">默认</span>
    <el-date-picker
      v-model="value6"
      type="daterange"
      value-format="yyyy-MM-dd"
      range-separator="至"
      start-placeholder="开始日期"
      end-placeholder="结束日期">
    </el-date-picker>
  </div>
  <div class="block">
    <span class="demonstration">带快捷选项</span>
    <el-date-picker
      v-model="value7"
      type="daterange"
      align="right"
      unlink-panels
      range-separator="至"
      start-placeholder="开始日期"
      end-placeholder="结束日期"
      :picker-options="pickerOptions2">
    </el-date-picker>
  </div>
</template>

<script>
  export default {
    data() {
      return {
        pickerOptions2: {
          shortcuts: [{
            text: ‘最近一周‘,
            onClick(picker) {
              const end = new Date();
              const start = new Date();
              start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
              picker.$emit(‘pick‘, [start, end]);
            }
          }, {
            text: ‘最近一个月‘,
            onClick(picker) {
              const end = new Date();
              const start = new Date();
              start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
              picker.$emit(‘pick‘, [start, end]);
            }
          }, {
            text: ‘最近三个月‘,
            onClick(picker) {
              const end = new Date();
              const start = new Date();
              start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
              picker.$emit(‘pick‘, [start, end]);
            }
          }]
        },
        value6: ‘‘,
        value7: ‘‘
      };
    },
 watch: {
   value6(newVal, oldVal) {
     console.log(newVal,oldVal)
   }
  }
  };
</script>

 

ElementUI 时间控件

原文:https://www.cnblogs.com/1rookie/p/8658594.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!