tool.js 225 B

1234567891011
  1. export function dateFormmat(date) {
  2. const T = new Date(date);
  3. return {
  4. year: T.getFullYear(),
  5. month: T.getMonth(),
  6. day: T.getDate(),
  7. hour: T.getHours(),
  8. min: T.getMinutes(),
  9. s: T.getSeconds()
  10. }
  11. }