prototype.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. export default{
  2. // 时间戳转换成日期
  3. formatDate(DateNum, AccurateTo) {
  4. var date = new Date(DateNum)
  5. var returnValue = ''
  6. var Y = date.getFullYear()
  7. var M = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1
  8. var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate()
  9. var h = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
  10. var m = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
  11. var s = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
  12. switch (AccurateTo) {
  13. case 'Y':
  14. returnValue = Y
  15. break
  16. case 'M':
  17. returnValue = Y + '-' + M
  18. break
  19. case 'D':
  20. returnValue = Y + '-' + M + '-' + D
  21. break
  22. case 'h':
  23. returnValue = Y + '-' + M + '-' + D + ' ' + h
  24. break
  25. case 'm':
  26. returnValue = Y + '-' + M + '-' + D + ' ' + h + ':' + m
  27. break
  28. case 's':
  29. returnValue = Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s
  30. break
  31. default:
  32. returnValue = Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s
  33. }
  34. return returnValue
  35. },
  36. }