From 714ef52b0239b00d278bc75d3bba878aa890169b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=2EKing-=E7=8E=8B=E5=87=AF=E5=A3=AE?= Date: Tue, 26 Dec 2023 14:44:50 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-111844=20fix:=E3=80=90=E5=A1=AB=E6=8A=A5?= =?UTF-8?q?-=E9=A2=84=E8=A7=88=E3=80=91=E6=9B=B4=E6=8D=A2FR=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E5=90=8E=EF=BC=8C=E9=A2=84=E8=A7=88=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E4=B8=8D=E5=90=8C=EF=BC=88=E5=8F=AF=E5=A4=8D=E7=8E=B0=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fineui/src/core/2.base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fineui/src/core/2.base.js b/packages/fineui/src/core/2.base.js index 3bbf2d00d..15502e37b 100644 --- a/packages/fineui/src/core/2.base.js +++ b/packages/fineui/src/core/2.base.js @@ -1367,7 +1367,7 @@ export function parseDateTime(str, fmt) { m = today.getMonth(); } if (_global.isNaN(d)) { - d = Math.min(getMonthDays(getDate(y, m)), today.getDate()); + d = 1; } if (_global.isNaN(hr)) { hr = today.getHours();