diff --git a/src/utils/index.js b/src/utils/index.js index cc37e1c..7dea249 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -552,17 +552,10 @@ export function getLastMonthEnd(n) { const year = date.getFullYear(); const month = date.getMonth(); - // 设置为目标月份的下个月1号 + // 设置为目标月份的1号 date.setMonth(month - n + 1); date.setDate(0); - // 如果月份不对,说明超出范围需要调整 - if (date.getMonth() !== (month - n + 1 + 12) % 12) { - date.setFullYear(year - 1); - date.setMonth(month - n + 1 + 12); - date.setDate(0); - } - return date; }