doway-coms 1.4.27 → 1.4.28
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/hs_err_pid25288.log +636 -0
- package/package.json +1 -1
- package/packages/BaseGrid/src/index.vue +5 -2
- package/dist/css/chunk-vendors.7f83d8f9.css +0 -8
- package/dist/css/index.86478f73.css +0 -3
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.307eaa8f.js +0 -347
- package/dist/js/index.48e7f7ac.js +0 -2
package/package.json
CHANGED
|
@@ -2253,12 +2253,14 @@ export default {
|
|
|
2253
2253
|
colInfo.filters[0].data.bindingValues = [];
|
|
2254
2254
|
XEUtils.arrayEach(colInfo.filters[0].data.displayValues, (item) => {
|
|
2255
2255
|
if (colInfo.params.controlType === controlType.select) {
|
|
2256
|
-
col.filters[0].data.bindingValues.push(item)
|
|
2256
|
+
// col.filters[0].data.bindingValues.push(item)
|
|
2257
2257
|
colInfo.filters[0].data.bindingValues.push(item);
|
|
2258
|
+
this.$set(col.filters[0].data,'bindingValues',colInfo.filters[0].data.bindingValues)
|
|
2258
2259
|
} else {
|
|
2259
2260
|
if (item.value[0] || item.value[1]) {
|
|
2260
|
-
col.filters[0].data.bindingValues.push(item)
|
|
2261
|
+
// col.filters[0].data.bindingValues.push(item)
|
|
2261
2262
|
colInfo.filters[0].data.bindingValues.push(item);
|
|
2263
|
+
this.$set(col.filters[0].data,'bindingValues',colInfo.filters[0].data.bindingValues)
|
|
2262
2264
|
}
|
|
2263
2265
|
}
|
|
2264
2266
|
});
|
|
@@ -2298,6 +2300,7 @@ export default {
|
|
|
2298
2300
|
};
|
|
2299
2301
|
let expStr = "";
|
|
2300
2302
|
let filterBindingValues = loopColInfo.filters[0].data.bindingValues;
|
|
2303
|
+
console.log('see',filterBindingValues)
|
|
2301
2304
|
//筛选条件过滤
|
|
2302
2305
|
let colFilterExpression = { operator: "or", expressions: [] };
|
|
2303
2306
|
|