mounted() {
this.getDefaultTime()
}
methods: {
getDefaultTime () {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
this.startDate = start ? new Date(start).pattern("yyyy-MM-dd") : "";
this.endDate = end ? new Date(end).pattern("yyyy-MM-dd") : "";
this.orderTime = [this.startDate, this.endDate]
}
}
el-date-picker 日期时间选择器默认显示时间为近7天
最新推荐文章于 2024-08-09 15:20:09 发布