bri-components 1.3.95 → 1.3.96

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": "bri-components",
3
- "version": "1.3.95",
3
+ "version": "1.3.96",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -72,7 +72,6 @@ export default {
72
72
  },
73
73
  computed: {
74
74
  allTreeData () {
75
- // console.log("allTreeData");
76
75
  return this.getCalcuedTree(this.data, this.treeColumns, this.selfColumns);
77
76
  },
78
77
  allListData () {
@@ -328,10 +328,10 @@ export default {
328
328
  return this.controlKey === "_default" ? false : this.selfPropsObj._disabledOldDataRow;
329
329
  },
330
330
  showCreateBtnColKeys () {
331
- return this.selfPropsObj._showCreateBtnColKeys;
331
+ return this.selfPropsObj._showCreateBtnColKeys || []; // 配置端有问题,高级以依赖时候值成undefined了
332
332
  },
333
333
  hideColKeys () {
334
- return this.selfPropsObj._hideColKeys || [];
334
+ return this.selfPropsObj._hideColKeys;
335
335
  },
336
336
 
337
337
  searchLabelWidth () {