码迷,mamicode.com
首页 > 其他好文 > 详细

获取当天凌晨时间

时间:2018-05-16 20:42:52      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:this   get   获取   raw   reac   with   tar   AC   hdr   

//获取明天凌晨;
let start = 0;
this.orderList.forEach(item => {
if (item.time === ‘0‘) {
start = new Date(new Date(new Date().setDate(new Date().getDate()+1)).setHours(0,0,0,0)).getTime();
item.withdrawTime = start;
} else {
start = new Date(new Date(new Date().setDate(new Date(item.time * 1000).getDate()+1)).setHours(0,0,0,0)).getTime();
item.withdrawTime = start;
}
});

获取当天凌晨时间

标签:this   get   获取   raw   reac   with   tar   AC   hdr   

原文地址:https://www.cnblogs.com/QxkWeb/p/9047796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!