timeUtil.js 589 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 时间格式化
  3. * @param endTimeStamp
  4. * @constructor
  5. */
  6. export const TimeFormatting = (timeDifference) => {
  7. // 天数
  8. const day = Math.floor(timeDifference / 3600 / 24)
  9. // 小时
  10. const hr = Math.floor(timeDifference / 3600 % 24)
  11. // 分钟
  12. const min = Math.floor(timeDifference / 60 % 60)
  13. // 秒
  14. const sec = Math.floor(timeDifference % 60)
  15. return {
  16. day: timeFormat(day),
  17. hour: timeFormat(hr),
  18. min: timeFormat(min),
  19. sec: timeFormat(sec)
  20. }
  21. }
  22. // 时分秒换算
  23. function timeFormat(param) { // 小于10的格式化函数
  24. return param < 10 ? '0' + param : param
  25. }