其他分享
首页 > 其他分享> > 根据月份获取整月日期

根据月份获取整月日期

作者:互联网

   let month = value.month.split('-'); // value 2020-1
    let paramsStartTime = '';
    let paramsEndTime = '';
    paramsStartTime = month[0] + '-' + month[1] + '-01';
    const tempDate = new Date(paramsStartTime);
    tempDate.setMonth((tempDate.getMonth() + 1));
    tempDate.setDate(tempDate.getDate() - 1);
    paramsEndTime = `${tempDate.getFullYear()}-${(tempDate.getMonth() + 1).toString()
      .padStart(2, '0')}-${tempDate.getDate()
        .toString()
        .padStart(2, '0')}`;

 

标签:paramsStartTime,tempDate,month,获取,日期,paramsEndTime,let,整月,toString
来源: https://www.cnblogs.com/cai-xin/p/16670363.html