<template><el-date-pickerv-model="selectDateAll.selectDate"type="month":picker-options="pickerOptions"value-format="yyyy-MM"@change="dateChange"@focus="dateFocus":clearable="false":popper-class='dataPick'ref="dateMonth":disabled="!loadingFlag"placeholder="选择日期"></el-date-picker></templa...
</el-date-picker> pickerOptions1: { disabledDate: (time) => { if (this.queryDate.currentDay) { // this.queryDate.currentDay 结束时间 return time.getTime() > Date.now() || time.getTime() > new Date(this.queryDate.currentDay).getTime(); } else { return time.getTime() > Date....