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); } }