Browse Source

无JIRA任务 selectedValues要有默认值,否则buildTree可能报错

es6
windy 5 years ago
parent
commit
cdc6f396f1
  1. 4
      dist/2.0/fineui.ie.js
  2. 4
      dist/2.0/fineui.js
  3. 4
      dist/base.js
  4. 4
      dist/bundle.ie.js
  5. 4
      dist/bundle.js
  6. 4
      dist/fineui.ie.js
  7. 4
      dist/fineui.js
  8. 4
      src/base/tree/ztree/treeview.js

4
dist/2.0/fineui.ie.js vendored

@ -37131,7 +37131,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
dist/2.0/fineui.js vendored

@ -37535,7 +37535,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
dist/base.js vendored

@ -1664,7 +1664,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
dist/bundle.ie.js vendored

@ -37131,7 +37131,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
dist/bundle.js vendored

@ -37535,7 +37535,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
dist/fineui.ie.js vendored

@ -37376,7 +37376,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
dist/fineui.js vendored

@ -37780,7 +37780,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

4
src/base/tree/ztree/treeview.js

@ -8,7 +8,9 @@ BI.TreeView = BI.inherit(BI.Pane, {
_defaultConfig: function () {
return BI.extend(BI.TreeView.superclass._defaultConfig.apply(this, arguments), {
_baseCls: "bi-tree",
paras: {},
paras: {
selectedValues: {}
},
itemsCreator: BI.emptyFn
});
},

Loading…
Cancel
Save