From 6451355291fbe5892376edf2598009c443a9cb73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Tue, 1 Apr 2025 16:21:22 +0800 Subject: [PATCH] debug --- src/utils/index.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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; }