Browse Source

Merge pull request #267292 in DEC/fineui from master to feature/x

* commit '62bc5c7d80b2c1513c054652b56e85f2d96b7e00':
  BI-143833 fix: 全选时数据变化,点击确定组件不会刷新
  BI-143833 fix: 全选时数据变化,点击确定组件不会刷新
master
superman 8 months ago
parent
commit
c022820293
  1. 17
      packages/fineui/src/widget/multiselect/multiselect.insert.combo.js

17
packages/fineui/src/widget/multiselect/multiselect.insert.combo.js

@ -31,7 +31,8 @@ import {
pushDistinct,
Selection,
SIZE_CONSANTS,
BlankSplitChar
BlankSplitChar,
size,
} from "@/core";
import { Single, Combo, Msg } from "@/base";
import { MultiSelectBar, TriggerIconButton } from "@/case";
@ -215,7 +216,19 @@ export class MultiSelectInsertCombo extends Single {
},
}
],
itemsCreator: o.itemsCreator,
itemsCreator: (op, callback) => {
o.itemsCreator(op, ob => {
callback(ob);
// 全选时数据变化,配置需要同步
if (op.times === 1 &&this.storeValue.type === Selection.All && size(ob.items) !== size(this.storeValue.assist)) {
this._dataChange = true;
this.storeValue.assist = map(ob.items, 'value');
this._adjust(() => {
assertShowValue();
});
}
});
},
valueFormatter: o.valueFormatter,
itemFormatter: o.itemFormatter,
itemHeight: o.itemHeight,

Loading…
Cancel
Save