Browse Source

Merge pull request #937 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '3f24375e3bf3112f9ae613c713666617d9c3eea6':
  BI-45616 fix: 2月份下拉有31号
es6
windy 5 years ago
parent
commit
6f27292dee
  1. 3
      src/widget/date/calendar/popup.calendar.date.js

3
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;
},

Loading…
Cancel
Save