From db9970c53173a5050a9d264eacc81ea83b7e825f Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Wed, 29 May 2019 17:17:44 +0800 Subject: [PATCH] =?UTF-8?q?BI-45616=20fix:=202=E6=9C=88=E4=BB=BD=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E6=9C=8931=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widget/date/calendar/popup.calendar.date.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/widget/date/calendar/popup.calendar.date.js b/src/widget/date/calendar/popup.calendar.date.js index 90505daf8..11ea19a45 100644 --- a/src/widget/date/calendar/popup.calendar.date.js +++ b/src/widget/date/calendar/popup.calendar.date.js @@ -25,7 +25,8 @@ BI.DateCalendarPopup = BI.inherit(BI.Widget, { max: this.options.max, year: date.year, month: date.month, - day: this.selectedTime.day + // BI-45616 此处为确定当前应该展示哪个年月对应的Calendar, day不是关键数据, 给1号就可 + day: 1 }); return calendar; },