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
|
@@ -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 () {
|