doway-coms 2.8.8 → 2.9.0

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": "doway-coms",
3
- "version": "2.8.8",
3
+ "version": "2.9.0",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -19,6 +19,7 @@
19
19
  <VxeGrid
20
20
  ref="baseGrid"
21
21
  border
22
+ :scroll-y="{ enabled: true,gt:0 }"
22
23
  keep-source
23
24
  :loading="loading"
24
25
  auto-resize
@@ -3197,6 +3198,14 @@ export default {
3197
3198
  currentVisible = data.find((x) => cellValue.indexOf(x) > -1)
3198
3199
  ? true
3199
3200
  : false
3201
+ if(
3202
+ column.params.controlType === controlType.select ||
3203
+ column.params.controlType === controlType.multiSelect
3204
+ ){
3205
+ currentVisible = data.find((x) => cellValue===x)
3206
+ ? true
3207
+ : false
3208
+ }
3200
3209
  }
3201
3210
  return currentVisible
3202
3211
  },