| | |
| | | |
| | | return `${newYYYY}-${newMM}-${newDD} ${newHH}:${newMin}`; |
| | | } |
| | | /** 将时间转换成 YYYY-MM-DD HH:MM格式 |
| | | * @param {Object} date 时间 |
| | | */ |
| | | function formatDate(date) { |
| | | const year = date.getFullYear(); |
| | | const month = String(date.getMonth() + 1).padStart(2, '0'); |
| | | const day = String(date.getDate()).padStart(2, '0'); |
| | | const hours = String(date.getHours()).padStart(2, '0'); |
| | | const minutes = String(date.getMinutes()).padStart(2, '0'); |
| | | |
| | | return `${year}-${month}-${day} ${hours}:${minutes}`; |
| | | } |
| | | module.exports = { |
| | | dateTimeStr: dateTimeStr, |
| | | dateTimeSetHoureStr:dateTimeSetHoureStr, |
| | | calculateHoursDiff:calculateHoursDiff, |
| | | addHoursToDate:addHoursToDate, |
| | | formatDate:formatDate, |
| | | } |