liding
2026-09-17 1fce88476daa139f627a5b2abf2bc26823606170
src/utils/date.js
@@ -58,7 +58,7 @@
 * @param date
 * @returns {string}
 */
export function getYearAndMonthAndDaysZTZB(date = new Date()) {
export function getPayrollMonthDate(date = new Date()) {
  let year = date.getFullYear();
  let month = date.getMonth();
  let days = date.getDate();
@@ -78,4 +78,4 @@
  days = days < 10 ? '0' + days : days;
  return (year + month + days);
}
}