elementui 日期时间选择器 只能选择当前时间之后的时间

elementui 日期时间选择器 只能选择当前时间之后的时间

日期时间选择器禁止选择当前时间之前的时间,但是点击确认时是当前时间


前言

在这里插入图片描述

一、设置时间范围

<el-date-picker
type="datetime"
:picker-options="expireTimeOPtion"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择截止时间"
v-model="ruleForm.time"
@focus="focus"
:default-value="defaultValue"
></el-date-picker>
data(){
	return{
		expireTimeOPtion: {
			disabledDate(time) {
				return time.getTime() < Date.now() //如果没有后面的-8.64e7就是不可以选择今天的
			},
		},
	}
}

二、去掉此刻按钮

focus() {
	this.$nextTick(() => {
		document.getElementsByClassName('el-button--text')[0].setAttribute('style','display:none')
	})
}

我以为我这样可以了,但是当我不选择日期就点击确认的时候就会显示当前时间,所以为了避免这个问题便有了第三步,虽然不是什么好办法,但是能解决燃眉之急

三、设置默认值

data(){
	return{
		defaultValue:'',
	}
}
created(){
	this.defaultValue =this.getTomorrowTime()
}
// 获取明天时间
getTomorrowTime() {
	const yy = new Date().getFullYear()
	const MM = new Date().getMonth() + 1 < 10? '0' + (new Date().getMonth() + 1): new Date().getMonth() + 1
	const dd = new Date().getDate() < 10 ? '0' + new Date().getDate() : new Date().getDate()
	const HH = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours()
	const mm = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes()
	const ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds()
	return yy + '-' + MM + '-' + (dd+1) + ' ' + HH + ':' + mm + ':' + ss		
},
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值