@panpanzhao/component-ui 1.25.1030 → 1.26.321
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.
|
@@ -6321,6 +6321,7 @@ var SelectTree_component = normalizeComponent(
|
|
|
6321
6321
|
return Object.assign({
|
|
6322
6322
|
value: "value",
|
|
6323
6323
|
label: "label",
|
|
6324
|
+
disabled: "disabled",
|
|
6324
6325
|
children: "children"
|
|
6325
6326
|
}, this.optionProps);
|
|
6326
6327
|
},
|
|
@@ -6394,7 +6395,7 @@ var SelectTree_component = normalizeComponent(
|
|
|
6394
6395
|
"attrs": {
|
|
6395
6396
|
"value": itemOpt[_this2._optionProps.value],
|
|
6396
6397
|
"label": itemOpt[_this2._optionProps.label],
|
|
6397
|
-
"disabled": itemOpt.disabled
|
|
6398
|
+
"disabled": itemOpt[_this2._optionProps.disabled]
|
|
6398
6399
|
}
|
|
6399
6400
|
}, [_this2.optionRender ? _this2.optionRender.call(_this2, h, itemOpt, {
|
|
6400
6401
|
form: _this2._form,
|
|
@@ -6425,7 +6426,8 @@ var SelectTree_component = normalizeComponent(
|
|
|
6425
6426
|
"key": itemOpt[_this3._optionProps.value],
|
|
6426
6427
|
"attrs": {
|
|
6427
6428
|
"value": itemOpt[_this3._optionProps.value],
|
|
6428
|
-
"label": itemOpt[_this3._optionProps.label]
|
|
6429
|
+
"label": itemOpt[_this3._optionProps.label],
|
|
6430
|
+
"disabled": itemOpt[_this3._optionProps.disabled]
|
|
6429
6431
|
}
|
|
6430
6432
|
}, [_this3.optionRender ? _this3.optionRender.call(_this3, h, itemOpt, {
|
|
6431
6433
|
form: _this3._form,
|
|
@@ -2830,6 +2830,7 @@ var SelectTree_component = Object(componentNormalizer["a" /* default */])(
|
|
|
2830
2830
|
return Object.assign({
|
|
2831
2831
|
value: "value",
|
|
2832
2832
|
label: "label",
|
|
2833
|
+
disabled: "disabled",
|
|
2833
2834
|
children: "children"
|
|
2834
2835
|
}, this.optionProps);
|
|
2835
2836
|
},
|
|
@@ -2903,7 +2904,7 @@ var SelectTree_component = Object(componentNormalizer["a" /* default */])(
|
|
|
2903
2904
|
"attrs": {
|
|
2904
2905
|
"value": itemOpt[_this2._optionProps.value],
|
|
2905
2906
|
"label": itemOpt[_this2._optionProps.label],
|
|
2906
|
-
"disabled": itemOpt.disabled
|
|
2907
|
+
"disabled": itemOpt[_this2._optionProps.disabled]
|
|
2907
2908
|
}
|
|
2908
2909
|
}, [_this2.optionRender ? _this2.optionRender.call(_this2, h, itemOpt, {
|
|
2909
2910
|
form: _this2._form,
|
|
@@ -2934,7 +2935,8 @@ var SelectTree_component = Object(componentNormalizer["a" /* default */])(
|
|
|
2934
2935
|
"key": itemOpt[_this3._optionProps.value],
|
|
2935
2936
|
"attrs": {
|
|
2936
2937
|
"value": itemOpt[_this3._optionProps.value],
|
|
2937
|
-
"label": itemOpt[_this3._optionProps.label]
|
|
2938
|
+
"label": itemOpt[_this3._optionProps.label],
|
|
2939
|
+
"disabled": itemOpt[_this3._optionProps.disabled]
|
|
2938
2940
|
}
|
|
2939
2941
|
}, [_this3.optionRender ? _this3.optionRender.call(_this3, h, itemOpt, {
|
|
2940
2942
|
form: _this3._form,
|