保定网站建设咨询,wordpress评论微信登录,做网站必须搭框架么,erp软件多少钱一套需求#xff1a;el-date-picker只能选中当前月期和当前月期往前半年#xff0c;其他时间就禁用了不让选择了#xff0c;因为没数据哈哈。当然也可以选择往前一年等。
一、效果 二、写个日期选择器 :picker-options#xff1a;日期选项 value-format#xff1a;选择后的格…需求el-date-picker只能选中当前月期和当前月期往前半年其他时间就禁用了不让选择了因为没数据哈哈。当然也可以选择往前一年等。
一、效果 二、写个日期选择器 :picker-options日期选项 value-format选择后的格式 change事件改变后触发的函数
el-date-pickertypemonthsv-modelmonthTimeDataplaceholder选择一个或多个日期:picker-optionspickerOptionsvalue-formatyyyyMMchangemonthTime/el-date-picker
三、data的值 monthTimeData: [], // 绑定的日期值currentDate: new Date(), // 当前时间
四、computed this.currentDate.getMonth() - 4注意这个-4就是当前月往前可选的几个月 -6就是不算上当前月往前可以选6个月实在不懂可以自己测一下很简单的~ change时间就是个函数值就是选择后的值这边我就不写了 computed: {pickerOptions() {const startMonth new Date(this.currentDate.getFullYear(),this.currentDate.getMonth() - 4);const endMonth this.currentDate;return {disabledDate(time) {return time startMonth || time endMonth;},};},},
文章到此结束希望对你有所帮助~