Date.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. function getNowDate(type=0) {
  2. let date = new Date();
  3. let year = date.getFullYear(); //年
  4. let month = date.getMonth() + 1; //月
  5. let day = date.getDate(); //日
  6. let hour = date.getHours(); //时
  7. let minutes = date.getMinutes(); //分
  8. let seconds = date.getSeconds(); //秒
  9. if (month > 1 && month <= 9) month = "0" + month;
  10. if (day > 0 && day <= 9) day = "0" + day;
  11. if (hour > 0 && hour < 9) hour = "0" + hour;
  12. if (minutes > 0 && minutes <= 9) minutes = "0" + minutes;
  13. if (seconds > 0 && seconds < 9) seconds = "0" + seconds;
  14. if(type==0){
  15. return `${year}-${month}-${day} ${hour}:${minutes}:${seconds}`;
  16. }else if(type==1){
  17. return `${year}年${month}月${day}日`;
  18. }
  19. }
  20. //比较两时间之差
  21. function DifferDate(Date1, Date2) {
  22. if (typeof(Date1) == "string") Date1 = Date.parse(Date1);
  23. if (typeof(Date2) == "string") Date2 = Date.parse(Date2);
  24. return Math.floor((Date1 - Date2) / (24 * 3600 * 1000));
  25. }
  26. function GetTime(data){
  27. let cdata = JSON.parse(data);
  28. if(cdata[0]==cdata[1])return cdata[0];
  29. let sp1 = cdata[0].split('-')
  30. let sp2 =cdata[1].split('-')
  31. if(sp1[0]==sp2[0]){
  32. if(sp1[1]==sp2[1]){
  33. return `${sp1[0]}-${sp1[1]}-${sp1[2]} 至 ${sp2[2]}`
  34. }else{
  35. return `${sp1[0]}-${sp1[1]}-${sp1[2]} 至 ${sp2[1]}-${sp2[2]}`
  36. }
  37. }else{
  38. return cdata[0]+" 至 "+cdata[1]
  39. }
  40. }
  41. export {
  42. getNowDate,
  43. DifferDate,
  44. GetTime,
  45. }