DateUtil.ts 364 B

123456789101112131415161718192021222324252627282930313233343536
  1. export class DateUtil {
  2. /** 获取年月日 2020/8/3*/
  3. public static getYearMonthDay() {
  4. let dateObj = new Date();
  5. let month = dateObj.getUTCMonth() + 1; //months from 1-12
  6. let day = dateObj.getUTCDate();
  7. let year = dateObj.getUTCFullYear();
  8. return year + "/" + month + "/" + day;
  9. }
  10. }