时间

作者: 在下高姓 | 来源:发表于2021-07-23 09:20 被阅读0次
    [...Array(7).keys()].map(days => this.time(days)); 
    
    time(e){
            let date=new Date(Date.now() + 86400000 * e*2)
            return date.getFullYear()+"-"+[(date.getMonth()+1)>10?(date.getMonth()+1):"0"+(date.getMonth()+1)]+"-"+[date.getDate()>10?date.getDate():'0'+date.getDate()]
        },
    

    相关文章

      网友评论

          本文标题:时间

          本文链接:https://www.haomeiwen.com/subject/pbuumltx.html