ludc
2023-10-27 a647b8fb3c96791c126dcf26c78676adc35c670f
Source/UBCS-WEB/src/util/func.js
@@ -74,6 +74,23 @@
  }
  /**
   * ts日期格式处理
   * @param {要处理的日期} thisDate
   * @returns
   */
  static formattedDateTime(thisDate) {
    const date = new Date(thisDate);
    const year = date.getFullYear();
    const month = (date.getMonth() + 1).toString().padStart(2, '0');
    const day = date.getDate().toString().padStart(2, '0');
    const hours = date.getHours().toString().padStart(2, '0');
    const minutes = date.getMinutes().toString().padStart(2, '0');
    const seconds = date.getSeconds().toString().padStart(2, '0');
    const milliseconds = date.getMilliseconds().toString().padStart(3, '0');
    return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}.${milliseconds}`;
  }
  /**
   * 根据逗号联合
   * @param arr
   * @returns {string}