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/dist/css/chunk-vendors.7f83d8f9.css +8 -0
- package/dist/css/index.7946d50b.css +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.28fda91d.js +340 -0
- package/dist/js/index.49bc6add.js +2 -0
- package/lib/doway-coms.common.js +120397 -0
- package/lib/doway-coms.css +1 -0
- package/lib/doway-coms.umd.js +120407 -0
- package/lib/doway-coms.umd.min.js +328 -0
- package/package.json +1 -1
- package/packages/BaseGrid/src/index.vue +9 -0
package/package.json
CHANGED
|
@@ -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
|
},
|