欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ElementUI日期选择器选择今天及之前的日期,范围控制在180天

程序员文章站 2022-03-04 10:52:32
...

element给的控件其实大多数是不满足需求的,所以有时候需要自己去修改,网上找找就很多方法,但不会写的同志们就犯愁了,也得找到适合自己需求的不是,话不多说,上干货

html:

		v-model="week"
		type="daterange"
		range-separator="至"
		start-placeholder="开始日期"
		end-placeholder="结束日期"
		size="small"
		value-format="yyyy-MM-dd"
		:picker-options="pickerOptions"
		:clearable="false"
	></el-date-picker>

html里面很假单,就添加了一个属性 :picker-options=“pickerOptions”
data数据里面:

data(){
	return{
	pickerOptions: {
				disabledDate(time) {
					let curDate = new Date().getTime();
					let three = 180 * 24 * 3600 * 1000;
					let threeMonths = curDate - three;
					var thatDay = time.getTime();
					return (
						time.getTime() > Date.now() - 8.64e6 ||
						time.getTime() < threeMonths
					);
				}
			}
		}
}

这样就可以了,只能选择当天之前180天的日期

相关标签: vue.js