currentData.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. const getDate = function() {
  2. var date = new Date();
  3. var year = date.getFullYear(); //年 ,从 Date 对象以四位数字返回年份
  4. var month = date.getMonth() + 1; //月 ,从 Date 对象返回月份 (0 ~ 11) ,date.getMonth()比实际月份少 1 个月
  5. var day = date.getDate(); //日 ,从 Date 对象返回一个月中的某一天 (1 ~ 31)
  6. var hours = date.getHours(); //小时 ,返回 Date 对象的小时 (0 ~ 23)
  7. var minutes = date.getMinutes(); //分钟 ,返回 Date 对象的分钟 (0 ~ 59)
  8. var seconds = date.getSeconds(); //秒 ,返回 Date 对象的秒数 (0 ~ 59)
  9. //获取当前系统时间
  10. var currentDate = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
  11. // alert(currentDate);
  12. //修改月份格式
  13. if (month >= 1 && month <= 9) {
  14. month = "0" + month;
  15. }
  16. //修改日期格式
  17. if (day >= 0 && day <= 9) {
  18. day = "0" + day;
  19. }
  20. //修改小时格式
  21. if (hours >= 0 && hours <= 9) {
  22. hours = "0" + hours;
  23. }
  24. //修改分钟格式
  25. if (minutes >= 0 && minutes <= 9) {
  26. minutes = "0" + minutes;
  27. }
  28. //修改秒格式
  29. if (seconds >= 0 && seconds <= 9) {
  30. seconds = "0" + seconds;
  31. }
  32. //获取当前系统时间 格式(yyyy-mm-dd hh:mm:ss)
  33. var currentFormatDate = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
  34. return currentFormatDate;
  35. }
  36. export default {
  37. getDate
  38. }