Browse Source

fix: value没传返回的是[null]

es6
windy 5 years ago
parent
commit
dd0ceee346
  1. 8
      dist/2.0/fineui.ie.js
  2. 8
      dist/2.0/fineui.js
  3. 8
      dist/bundle.ie.js
  4. 8
      dist/bundle.js
  5. 8
      dist/fineui.ie.js
  6. 8
      dist/fineui.js
  7. 8
      dist/fineui_without_jquery_polyfill.js
  8. 8
      dist/widget.js
  9. 4
      src/widget/multilayerselecttree/multilayerselecttree.leveltree.js
  10. 4
      src/widget/multilayersingletree/multilayersingletree.leveltree.js

8
dist/2.0/fineui.ie.js vendored

@ -68909,7 +68909,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -69885,7 +69887,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/2.0/fineui.js vendored

@ -69313,7 +69313,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -70289,7 +70291,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/bundle.ie.js vendored

@ -68909,7 +68909,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -69885,7 +69887,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/bundle.js vendored

@ -69313,7 +69313,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -70289,7 +70291,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/fineui.ie.js vendored

@ -69154,7 +69154,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -70130,7 +70132,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/fineui.js vendored

@ -69558,7 +69558,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -70534,7 +70536,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/fineui_without_jquery_polyfill.js vendored

@ -52164,7 +52164,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -53140,7 +53142,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

8
dist/widget.js vendored

@ -6976,7 +6976,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {
@ -7952,7 +7954,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

4
src/widget/multilayerselecttree/multilayerselecttree.leveltree.js

@ -159,7 +159,9 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

4
src/widget/multilayersingletree/multilayersingletree.leveltree.js

@ -158,7 +158,9 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Pane, {
},
getValue: function () {
return BI.isArray(this.storeValue) ? this.storeValue : [this.storeValue];
return BI.isArray(this.storeValue) ?
this.storeValue : BI.isNull(this.storeValue) ?
[] : [this.storeValue];
},
getAllLeaves: function () {

Loading…
Cancel
Save