Browse Source

BI-17924 down_list_combo

es6
windy 6 years ago
parent
commit
e19fa47fd9
  1. 8
      dist/_fineui.min.js
  2. 3
      dist/bundle.js
  3. 2
      dist/bundle.min.js
  4. 8
      dist/fineui.min.js
  5. 3
      dist/widget.js
  6. 3
      src/widget/downlist/popup.downlist.js

8
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/bundle.js vendored

@ -89387,7 +89387,8 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
},
_createChildren: function (items) {
var self = this, result = [];
BI.each(items, function (i, it) {
// 不能修改populate进来的item的引用
BI.each(BI.deepClone(items), function (i, it) {
var item_done = {
type: "bi.down_list_group",
items: []

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/widget.js vendored

@ -2862,7 +2862,8 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
},
_createChildren: function (items) {
var self = this, result = [];
BI.each(items, function (i, it) {
// 不能修改populate进来的item的引用
BI.each(BI.deepClone(items), function (i, it) {
var item_done = {
type: "bi.down_list_group",
items: []

3
src/widget/downlist/popup.downlist.js

@ -75,7 +75,8 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
},
_createChildren: function (items) {
var self = this, result = [];
BI.each(items, function (i, it) {
// 不能修改populate进来的item的引用
BI.each(BI.deepClone(items), function (i, it) {
var item_done = {
type: "bi.down_list_group",
items: []

Loading…
Cancel
Save