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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "1.4.27",
3
+ "version": "1.4.28",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
@@ -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