This commit is contained in:
磷叶 2025-04-01 16:21:22 +08:00
parent 61a0644ced
commit 6451355291

View File

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