起止时间限制 结束时间必须大于开始时间 时间插件 el-date-picker

el-date-picker 样式修改:  https://blog.csdn.net/weixin_50885665/article/details/125073983 

 

 

<el-form-item label="轮训起止日期" prop="rotationStartTime">
          <el-col :span="11">
            <el-date-picker
              type="date"
              placeholder="选择日期"
              v-model="form.rotationStartTime"
              :picker-options="pickerOptionsStart"
              value-format="yyyy-MM-dd"
              clearable
            ></el-date-picker>
          </el-col>
          <el-col class="line" :span="2">-</el-col>
          <el-col :span="11">
            <el-form-item label prop="rotationEndTime">
              <el-date-picker
                clearable
                type="date"
                value-format="yyyy-MM-dd"
                v-model="form.rotationEndTime"
                :picker-options="pickerOptionsEnd"
                placeholder="选择日期"
              ></el-date-picker>
            </el-form-item>
          </el-col>
        </el-form-item>

data中:

 // 起始日期限制
      pickerOptionsStart: {
        disabledDate: time => {
          if (this.form.rotationEndTime) {
            return (
              time.getTime() > new Date(this.form.rotationEndTime).getTime()
            );
          }
        }
      },
      // 终止日期限制
      pickerOptionsEnd: {
        disabledDate: time => {
          return (
            time.getTime() <
            new Date(this.form.rotationStartTime).getTime() -
              1 * 24 * 60 * 60 * 1000
          );
        }
      }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值