imatrix-ui 2.9.51-dw → 2.9.53-dw

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imatrix-ui",
3
- "version": "2.9.51-dw",
3
+ "version": "2.9.53-dw",
4
4
  "description": "前端组件库:表格、表单、组织结构树等",
5
5
  "main": "lib/super-ui.umd.min.js",
6
6
  "private": false,
@@ -1182,7 +1182,8 @@ export default {
1182
1182
  multiselectChange(arr) {
1183
1183
  // console.log('multiselectChange1---arr=', arr)
1184
1184
  let isSaveAll = false
1185
- if (arr && arr.length > 0) {
1185
+ if (arr && arr.length > 0 && this.type === 'multiselect' && !this.isDynamicDataSourceSource()) {
1186
+ // 非动态数据源多选下拉时才需要走该逻辑
1186
1187
  const saveAll = 'saveAll'
1187
1188
  if (arr.indexOf(saveAll) !== -1) {
1188
1189
  const length = arr.length
@@ -180,7 +180,6 @@ export default {
180
180
  })
181
181
  const spanNum = this.getSpanNum(searchColumns)
182
182
  const fieldNum = this.getFieldNumPerRow(searchColumns)
183
- console.log('searchForm-----fieldNum---', fieldNum, 'spanNum---', spanNum)
184
183
  const rowNum = Math.ceil(searchColumns.length / fieldNum)
185
184
  const advancedQuery = this.query.advancedQuery
186
185
  const normalQuery = this.query.normalQuery