doway-coms 2.10.2 → 2.10.3
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 +1 -1
- package/packages/BaseGrid/src/index.vue +10 -2
- package/dist/css/chunk-vendors.7f83d8f9.css +0 -8
- package/dist/css/index.7946d50b.css +0 -1
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.28fda91d.js +0 -340
- package/dist/js/index.49bc6add.js +0 -2
- package/lib/doway-coms.common.js +0 -120397
- package/lib/doway-coms.css +0 -1
- package/lib/doway-coms.umd.js +0 -120407
- package/lib/doway-coms.umd.min.js +0 -328
package/package.json
CHANGED
|
@@ -3173,8 +3173,8 @@ export default {
|
|
|
3173
3173
|
}
|
|
3174
3174
|
// 初始标签
|
|
3175
3175
|
this.tagData = JSON.parse(
|
|
3176
|
-
|
|
3177
|
-
|
|
3176
|
+
JSON.stringify(XEUtils.filter(this.$refs.baseGrid.getCheckedFilters(),p=>p.column.params.sysVisible!==false))
|
|
3177
|
+
)
|
|
3178
3178
|
this.$refs.baseGrid.closeFilter()
|
|
3179
3179
|
},
|
|
3180
3180
|
filterMethod({ options, values, cellValue, row, column }) {
|
|
@@ -3338,6 +3338,14 @@ export default {
|
|
|
3338
3338
|
// 筛选前关闭所有展开行
|
|
3339
3339
|
this.closeAllExpand()
|
|
3340
3340
|
if (visible) {
|
|
3341
|
+
if(column.filters[0].data ==undefined){
|
|
3342
|
+
column.filters[0]={
|
|
3343
|
+
data:{
|
|
3344
|
+
displayValues:[],
|
|
3345
|
+
bindingValues:[]
|
|
3346
|
+
}
|
|
3347
|
+
}
|
|
3348
|
+
}
|
|
3341
3349
|
//重新赋值过滤的显示值
|
|
3342
3350
|
column.filters[0].data.displayValues = []
|
|
3343
3351
|
column.filters[0].data.displayValueSearchText = ''
|