时间:2021-05-25
何开此题
我是一个码农,缘起就是这次需求遇到了之前实现过的功能细节,不想再从头翻组件文档实现一遍,最好是直接拷贝粘贴。
细节
picker-options 设定规则:时间范围最大可选择30天, 最晚时间为今天。
element-ui 的日期选择器的组件是 el-date-picker.
设定 pickerOptions2,
data() { return { pickerOptions2: { disabledDate: theDate => { const oneDay = 3600 * 1000 * 24 const current = theDate.getTime() const now = Date.now() const condition1 = current > now if (!this.minDateTimestamp) return condition1 const pickerRangeNum = 30 // 时间范围最大可选择30天,最晚时间为今天 const lastMonthBegin = this.minDateTimestamp const lastMonthEnd = lastMonthBegin + pickerRangeNum * oneDay return ( condition1 || current < lastMonthBegin || current > lastMonthEnd ) }, onPick: ({ maxDate, minDate }) => { this.minDateTimestamp = minDate.getTime() if (maxDate) { this.minDateTimestamp = 0 } }, }, } },模板的设定,
<template><el-date-picker class="form-item-control" v-model="qo2.dateRange2" type="daterange" range-separator=" 至 " start-placeholder="开始日期" end-placeholder="结束日期" placeholder="请选择时间段" :picker-options="pickerOptions2"/></template>总结
element-ui 动态限定的日期范围选择器,再回首,不用愁。
到此这篇关于element-ui动态限定的日期范围选择器代码片段的文章就介绍到这了,更多相关element-ui动态限定的日期范围选择器代码片段内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
由于工作需求,想实现一个多级联动选择器,但是网上现有的联动选择器都不是我想要的,我参照基于vue2.0的element-ui中的Cascader级联选择器的样式
前言:由于做项目需要一个树形选择器,项目用的也是element-ui框架,然而它自带的选择器组件没有树形选项,又不想引入其他的框架组件,于是自己利用el-sel
Nuxt使用create-nuxt-app创建项目时,选择使用Element-UI为默认组件库,发现Nuxt没有开启Element-UI的按需引入配置,需要自行
vue使用element-ui中的Notification自定义按钮并实现关闭功能及如何处理多个通知使用element-ui中的Notification,只有一
bug1.找不到element-ui/lib/theme-default/index.css解决:修改路径为element-ui/lib/theme-chalk