



























<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); } }
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。