Browse Source

Merge pull request #318 in FUI/fineui from ~WINDY/fui:master to master

* commit 'c71f11a004053a7437e019edcdc37d8e93184d24':
  BI-17974 变量少改了
es6
guy 6 years ago
parent
commit
e69a5f2ac5
  1. 4
      dist/_fineui.min.js
  2. 4
      dist/bundle.js
  3. 4
      dist/bundle.min.js
  4. 4
      dist/fineui.min.js
  5. 4
      dist/widget.js
  6. 2
      src/widget/datepane/datepane.js
  7. 2
      src/widget/datetimepane/datetimepane.js

4
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -88240,7 +88240,7 @@ BI.shortcut("bi.static_date_pane_card", BI.StaticDatePaneCard);BI.DynamicDatePan
v = v || {};
var type = v.type || BI.DynamicDateCombo.Static;
var value = v.value || v;
this.switch.setValue(type);
this.switcher.setValue(type);
this.dateTab.setSelect(type);
switch (type) {
case BI.DynamicDateCombo.Dynamic:
@ -88975,7 +88975,7 @@ BI.shortcut("bi.static_date_time_pane_card", BI.StaticDateTimePaneCard);BI.Dynam
v = v || {};
var type = v.type || BI.DynamicDateTimePane.Static;
var value = v.value || v;
this.switch.setValue(type);
this.switcher.setValue(type);
this.dateTab.setSelect(type);
switch (type) {
case BI.DynamicDateTimePane.Dynamic:

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/widget.js vendored

@ -1685,7 +1685,7 @@ BI.shortcut("bi.static_date_pane_card", BI.StaticDatePaneCard);BI.DynamicDatePan
v = v || {};
var type = v.type || BI.DynamicDateCombo.Static;
var value = v.value || v;
this.switch.setValue(type);
this.switcher.setValue(type);
this.dateTab.setSelect(type);
switch (type) {
case BI.DynamicDateCombo.Dynamic:
@ -2420,7 +2420,7 @@ BI.shortcut("bi.static_date_time_pane_card", BI.StaticDateTimePaneCard);BI.Dynam
v = v || {};
var type = v.type || BI.DynamicDateTimePane.Static;
var value = v.value || v;
this.switch.setValue(type);
this.switcher.setValue(type);
this.dateTab.setSelect(type);
switch (type) {
case BI.DynamicDateTimePane.Dynamic:

2
src/widget/datepane/datepane.js

@ -104,7 +104,7 @@ BI.DynamicDatePane = BI.inherit(BI.Widget, {
v = v || {};
var type = v.type || BI.DynamicDateCombo.Static;
var value = v.value || v;
this.switch.setValue(type);
this.switcher.setValue(type);
this.dateTab.setSelect(type);
switch (type) {
case BI.DynamicDateCombo.Dynamic:

2
src/widget/datetimepane/datetimepane.js

@ -104,7 +104,7 @@ BI.DynamicDateTimePane = BI.inherit(BI.Widget, {
v = v || {};
var type = v.type || BI.DynamicDateTimePane.Static;
var value = v.value || v;
this.switch.setValue(type);
this.switcher.setValue(type);
this.dateTab.setSelect(type);
switch (type) {
case BI.DynamicDateTimePane.Dynamic:

Loading…
Cancel
Save