/*** @param {string} date 起始日期* @param {number} day 向后的天数* @return {string} 返回想要得到的日期*/function convertDate (date, day) { let tempDate = new Date(date); tempDate.setDate(tempDate.getDate()+day); let Y = tempDate.getFullYear(); let M = tempDate.getMonth()+...