debug
This commit is contained in:
parent
61a0644ced
commit
6451355291
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user