<el-date-picker v-model="importData.specifyPostingDate" type="month" placeholder="选择日期" format="yyyy 年 MM 月 dd 日" @change="specifyPostingDateChange" value-format="timestamp"> </el-date-picker>
specifyPostingDateChange(val) { if (val) { const date = new Date(val); date.setDate(28) date.setMonth(date.getMonth() + 1) // 日期设置为0号, 0表示1号的前一天 this.importData.specifyPostingDate = date.setDate(0); } }