element ui 日期时间组件默认展示一周时间

element ui 日期时间组件默认展示一周时间,第1张

在mounted钩子函数中获取时间戳 (建议定义方法再mounted钩子去调用)

const date = new Date(new Date().getTime() - 1000 * 60 * 60 * 24 * 6)

const startTime = date.getFullYear() + '-' + ((date.getMonth() + 1) < 10 ? '0' + (date.getMonth() + 1) : (date.getMonth() + 1)) + '-' + (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' 00:00:00'

const date2 = new Date()

const endTime = date2.getFullYear() + '-' + ((date2.getMonth() + 1) < 10 ? '0' + (date2.getMonth() + 1) : (date2.getMonth() + 1)) + '-' + (date2.getDate() < 10 ? '0' + date2.getDate() : date2.getDate()) + ' 23:59:59'

this.forms.times = [startTime, endTime]

与后端联调时可以这样传参

一般关闭抽屉需要重置搜索的数据,所以记得在重置的时候也给上默认值,不然渲染不出来

可以用watch来监听抽屉关闭 

 

欢迎分享,转载请注明来源:内存溢出

原文地址:https://www.54852.com/web/1297290.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-06-10
下一篇2022-06-10

发表评论

登录后才能评论

评论列表(0条)

    保存