Browse Source

BI-18276 年月份

es6
windy 6 years ago
parent
commit
c236798401
  1. 18
      dist/_fineui.min.js
  2. 2
      dist/bundle.js
  3. 34
      dist/bundle.min.js
  4. 18
      dist/fineui.min.js
  5. 2
      dist/widget.js
  6. 2
      src/widget/yearmonth/trigger.yearmonth.js

18
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -108761,7 +108761,7 @@ BI.shortcut("bi.dynamic_year_month_popup", BI.DynamicYearMonthPopup);BI.DynamicY
type: BI.DynamicDateCombo.Static,
value: {
year: self.yearEditor.getValue(),
month: BI.isEmptyString(self.monthEditor.getValue()) ? "" : monthValue - 1
month: BI.isEmptyString(self.monthEditor.getValue()) ? "" : monthValue
}
};
}

34
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

18
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/widget.js vendored

@ -22125,7 +22125,7 @@ BI.shortcut("bi.dynamic_year_month_popup", BI.DynamicYearMonthPopup);BI.DynamicY
type: BI.DynamicDateCombo.Static,
value: {
year: self.yearEditor.getValue(),
month: BI.isEmptyString(self.monthEditor.getValue()) ? "" : monthValue - 1
month: BI.isEmptyString(self.monthEditor.getValue()) ? "" : monthValue
}
};
}

2
src/widget/yearmonth/trigger.yearmonth.js

@ -95,7 +95,7 @@ BI.DynamicYearMonthTrigger = BI.inherit(BI.Trigger, {
type: BI.DynamicDateCombo.Static,
value: {
year: self.yearEditor.getValue(),
month: BI.isEmptyString(self.monthEditor.getValue()) ? "" : monthValue - 1
month: BI.isEmptyString(self.monthEditor.getValue()) ? "" : monthValue
}
};
}

Loading…
Cancel
Save