el-date-picker :picker-options=“pickerOptions“ 设置只能选择当前月第一天到当前月最后一天,
html层 :picker-options=“pickerOptions”
js 层
//只能选择当前月日期
pickerOptions: {
disabledDate: (time) => {
var now = new Date(); //当前日期
var nowMonth = now.getMonth(); //当前月
var nowYear = now.getFullYear(); //当前年
//本月的开始时间
var monthStartDate = new Date(nowYe
原创
2021-04-20 17:51:52 ·
1674 阅读 ·
0 评论