@epie/bi-crud 2.0.28 → 2.0.30
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/lib/bi-crud.esm.js +9 -12
- package/lib/bi-crud.umd.js +9 -12
- package/package.json +1 -1
package/lib/bi-crud.esm.js
CHANGED
|
@@ -12582,9 +12582,15 @@ function useRender$2({
|
|
|
12582
12582
|
} // 默认
|
|
12583
12583
|
else {
|
|
12584
12584
|
function deep(item) {
|
|
12585
|
-
|
|
12585
|
+
let props;
|
|
12586
|
+
|
|
12587
|
+
try {
|
|
12588
|
+
props = { ...item
|
|
12589
|
+
};
|
|
12590
|
+
delete props.children;
|
|
12591
|
+
} catch (ex) {} // Cannot set property children of #<Element>
|
|
12592
|
+
|
|
12586
12593
|
|
|
12587
|
-
delete props.children;
|
|
12588
12594
|
return h(ElTableColumn, props, {
|
|
12589
12595
|
header: scope => {
|
|
12590
12596
|
const slot = slots[`header-${item.prop}`];
|
|
@@ -13640,16 +13646,7 @@ function useRender$1(ctx) {
|
|
|
13640
13646
|
|
|
13641
13647
|
}) : null;
|
|
13642
13648
|
return createVNode(resolveComponent("el-col"), mergeProps({
|
|
13643
|
-
"span": 6
|
|
13644
|
-
"xs": {
|
|
13645
|
-
span: 12
|
|
13646
|
-
},
|
|
13647
|
-
"sm": {
|
|
13648
|
-
span: 8
|
|
13649
|
-
},
|
|
13650
|
-
"lg": {
|
|
13651
|
-
span: 6
|
|
13652
|
-
}
|
|
13649
|
+
"span": 6
|
|
13653
13650
|
}, e), _isSlot$2(FormItem) ? FormItem : {
|
|
13654
13651
|
default: () => [FormItem]
|
|
13655
13652
|
});
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -12585,9 +12585,15 @@
|
|
|
12585
12585
|
} // 默认
|
|
12586
12586
|
else {
|
|
12587
12587
|
function deep(item) {
|
|
12588
|
-
|
|
12588
|
+
let props;
|
|
12589
|
+
|
|
12590
|
+
try {
|
|
12591
|
+
props = { ...item
|
|
12592
|
+
};
|
|
12593
|
+
delete props.children;
|
|
12594
|
+
} catch (ex) {} // Cannot set property children of #<Element>
|
|
12595
|
+
|
|
12589
12596
|
|
|
12590
|
-
delete props.children;
|
|
12591
12597
|
return vue.h(ElTableColumn, props, {
|
|
12592
12598
|
header: scope => {
|
|
12593
12599
|
const slot = slots[`header-${item.prop}`];
|
|
@@ -13643,16 +13649,7 @@
|
|
|
13643
13649
|
|
|
13644
13650
|
}) : null;
|
|
13645
13651
|
return vue.createVNode(vue.resolveComponent("el-col"), vue.mergeProps({
|
|
13646
|
-
"span": 6
|
|
13647
|
-
"xs": {
|
|
13648
|
-
span: 12
|
|
13649
|
-
},
|
|
13650
|
-
"sm": {
|
|
13651
|
-
span: 8
|
|
13652
|
-
},
|
|
13653
|
-
"lg": {
|
|
13654
|
-
span: 6
|
|
13655
|
-
}
|
|
13652
|
+
"span": 6
|
|
13656
13653
|
}, e), _isSlot$2(FormItem) ? FormItem : {
|
|
13657
13654
|
default: () => [FormItem]
|
|
13658
13655
|
});
|