form-custom-test 3.0.52 → 3.0.54
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/dist/designer.es.js +115 -57
- package/dist/designer.style.css +2 -2
- package/dist/designer.umd.js +10 -10
- package/dist/render.es.js +95 -55
- package/dist/render.style.css +2 -2
- package/dist/render.umd.js +76 -76
- package/package.json +1 -1
package/dist/render.es.js
CHANGED
|
@@ -8517,6 +8517,12 @@ var lodash = { exports: {} };
|
|
|
8517
8517
|
})(lodash, lodash.exports);
|
|
8518
8518
|
var fieldMixin = {
|
|
8519
8519
|
inject: ["refList", "sfRefList", "getFormConfig", "getGlobalDsv", "globalOptionData", "globalModel", "getOptionData"],
|
|
8520
|
+
props: {
|
|
8521
|
+
subFormDisabled: {
|
|
8522
|
+
type: Boolean,
|
|
8523
|
+
default: false
|
|
8524
|
+
}
|
|
8525
|
+
},
|
|
8520
8526
|
computed: {
|
|
8521
8527
|
formConfig() {
|
|
8522
8528
|
return this.getFormConfig();
|
|
@@ -8538,6 +8544,9 @@ var fieldMixin = {
|
|
|
8538
8544
|
}
|
|
8539
8545
|
},
|
|
8540
8546
|
methods: {
|
|
8547
|
+
getDisabled() {
|
|
8548
|
+
return this.subFormDisabled === true || !!this.field && !!this.field.options && !!this.field.options.disabled;
|
|
8549
|
+
},
|
|
8541
8550
|
getPropName() {
|
|
8542
8551
|
if (this.subFormItemFlag && !this.designState) {
|
|
8543
8552
|
return this.subFormName + "." + this.subFormRowIndex + "." + this.field.options.name + "";
|
|
@@ -8855,8 +8864,27 @@ var fieldMixin = {
|
|
|
8855
8864
|
return formRef && typeof formRef.findColByName === "function" ? formRef.findColByName(null, colName) : null;
|
|
8856
8865
|
},
|
|
8857
8866
|
setColHidden(colName, hidden) {
|
|
8858
|
-
const
|
|
8859
|
-
|
|
8867
|
+
const hiddenVal = !!hidden;
|
|
8868
|
+
console.log("colName", colName);
|
|
8869
|
+
if (Array.isArray(colName)) {
|
|
8870
|
+
let anySet = false;
|
|
8871
|
+
colName.forEach((cName) => {
|
|
8872
|
+
console.log("cName", cName);
|
|
8873
|
+
const col2 = this.findColByName(cName);
|
|
8874
|
+
console.log("col", col2);
|
|
8875
|
+
if (col2 && col2.options) {
|
|
8876
|
+
col2.options.hidden = hiddenVal;
|
|
8877
|
+
console.log("col.options.hidden", col2.options.hidden);
|
|
8878
|
+
anySet = true;
|
|
8879
|
+
}
|
|
8880
|
+
});
|
|
8881
|
+
return anySet;
|
|
8882
|
+
}
|
|
8883
|
+
const col = this.findColByName(colName);
|
|
8884
|
+
if (!col || !col.options)
|
|
8885
|
+
return false;
|
|
8886
|
+
col.options.hidden = hiddenVal;
|
|
8887
|
+
return true;
|
|
8860
8888
|
},
|
|
8861
8889
|
getWidgetRef(widgetName, showError, rowId) {
|
|
8862
8890
|
let foundRef = null;
|
|
@@ -9094,7 +9122,7 @@ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9094
9122
|
round: $props.field.options.round,
|
|
9095
9123
|
circle: $props.field.options.circle,
|
|
9096
9124
|
icon: $props.field.options.icon,
|
|
9097
|
-
disabled:
|
|
9125
|
+
disabled: _ctx.getDisabled(),
|
|
9098
9126
|
onClick: _ctx.handleButtonWidgetClick
|
|
9099
9127
|
}, {
|
|
9100
9128
|
default: withCtx(() => [
|
|
@@ -9106,7 +9134,7 @@ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9106
9134
|
_: 1
|
|
9107
9135
|
}, 8, ["designer", "field", "design-state", "display-style", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
9108
9136
|
}
|
|
9109
|
-
var buttonWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$13, [["render", _sfc_render$13], ["__scopeId", "data-v-
|
|
9137
|
+
var buttonWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$13, [["render", _sfc_render$13], ["__scopeId", "data-v-78bf6014"]]);
|
|
9110
9138
|
var __glob_0_0$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9111
9139
|
__proto__: null,
|
|
9112
9140
|
"default": buttonWidget
|
|
@@ -9465,7 +9493,7 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9465
9493
|
options: $props.field.options.optionItems,
|
|
9466
9494
|
modelValue: $data.fieldModel,
|
|
9467
9495
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
9468
|
-
disabled:
|
|
9496
|
+
disabled: _ctx.getDisabled(),
|
|
9469
9497
|
size: _ctx.widgetSize,
|
|
9470
9498
|
clearable: $props.field.options.clearable,
|
|
9471
9499
|
filterable: $props.field.options.filterable,
|
|
@@ -9481,7 +9509,7 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9481
9509
|
_: 1
|
|
9482
9510
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
9483
9511
|
}
|
|
9484
|
-
var cascaderWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$11, [["render", _sfc_render$11], ["__scopeId", "data-v-
|
|
9512
|
+
var cascaderWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$11, [["render", _sfc_render$11], ["__scopeId", "data-v-7c3dbd57"]]);
|
|
9485
9513
|
var __glob_0_1$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9486
9514
|
__proto__: null,
|
|
9487
9515
|
"default": cascaderWidget
|
|
@@ -9565,7 +9593,7 @@ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9565
9593
|
ref: "fieldEditor",
|
|
9566
9594
|
modelValue: $data.fieldModel,
|
|
9567
9595
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
9568
|
-
disabled:
|
|
9596
|
+
disabled: _ctx.getDisabled(),
|
|
9569
9597
|
size: _ctx.widgetSize,
|
|
9570
9598
|
onChange: _ctx.handleChangeEvent
|
|
9571
9599
|
}, {
|
|
@@ -9604,7 +9632,7 @@ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9604
9632
|
_: 1
|
|
9605
9633
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
9606
9634
|
}
|
|
9607
|
-
var checkboxWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$10, [["render", _sfc_render$10], ["__scopeId", "data-v-
|
|
9635
|
+
var checkboxWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$10, [["render", _sfc_render$10], ["__scopeId", "data-v-3944f5f4"]]);
|
|
9608
9636
|
var __glob_0_2$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9609
9637
|
__proto__: null,
|
|
9610
9638
|
"default": checkboxWidget
|
|
@@ -9686,14 +9714,14 @@ function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9686
9714
|
modelValue: $data.fieldModel,
|
|
9687
9715
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
9688
9716
|
size: _ctx.widgetSize,
|
|
9689
|
-
disabled:
|
|
9717
|
+
disabled: _ctx.getDisabled(),
|
|
9690
9718
|
onChange: _ctx.handleChangeEvent
|
|
9691
9719
|
}, null, 8, ["modelValue", "size", "disabled", "onChange"])
|
|
9692
9720
|
]),
|
|
9693
9721
|
_: 1
|
|
9694
9722
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
9695
9723
|
}
|
|
9696
|
-
var colorWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$$, [["render", _sfc_render$$], ["__scopeId", "data-v-
|
|
9724
|
+
var colorWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$$, [["render", _sfc_render$$], ["__scopeId", "data-v-52b66ef1"]]);
|
|
9697
9725
|
var __glob_0_3$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9698
9726
|
__proto__: null,
|
|
9699
9727
|
"default": colorWidget
|
|
@@ -9775,7 +9803,7 @@ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9775
9803
|
type: $props.field.options.type,
|
|
9776
9804
|
modelValue: $data.fieldModel,
|
|
9777
9805
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
9778
|
-
disabled:
|
|
9806
|
+
disabled: _ctx.getDisabled(),
|
|
9779
9807
|
readonly: $props.field.options.readonly,
|
|
9780
9808
|
size: _ctx.widgetSize,
|
|
9781
9809
|
clearable: $props.field.options.clearable,
|
|
@@ -9792,7 +9820,7 @@ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9792
9820
|
_: 1
|
|
9793
9821
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
9794
9822
|
}
|
|
9795
|
-
var dateRangeWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$_, [["render", _sfc_render$_], ["__scopeId", "data-v-
|
|
9823
|
+
var dateRangeWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$_, [["render", _sfc_render$_], ["__scopeId", "data-v-e50300fe"]]);
|
|
9796
9824
|
var __glob_0_4$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9797
9825
|
__proto__: null,
|
|
9798
9826
|
"default": dateRangeWidget
|
|
@@ -9876,7 +9904,7 @@ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9876
9904
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
9877
9905
|
class: normalizeClass([!!$props.field.options.autoFullWidth ? "auto-full-width" : ""]),
|
|
9878
9906
|
readonly: $props.field.options.readonly,
|
|
9879
|
-
disabled:
|
|
9907
|
+
disabled: _ctx.getDisabled(),
|
|
9880
9908
|
size: _ctx.widgetSize,
|
|
9881
9909
|
clearable: $props.field.options.clearable,
|
|
9882
9910
|
editable: $props.field.options.editable,
|
|
@@ -9891,7 +9919,7 @@ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
9891
9919
|
_: 1
|
|
9892
9920
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
9893
9921
|
}
|
|
9894
|
-
var dateWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$Z, [["render", _sfc_render$Z], ["__scopeId", "data-v-
|
|
9922
|
+
var dateWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$Z, [["render", _sfc_render$Z], ["__scopeId", "data-v-89ff4bae"]]);
|
|
9895
9923
|
var __glob_0_5$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
9896
9924
|
__proto__: null,
|
|
9897
9925
|
"default": dateWidget
|
|
@@ -10627,7 +10655,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10627
10655
|
createElementVNode("div", _hoisted_1$q, [
|
|
10628
10656
|
createVNode(_component_el_upload, {
|
|
10629
10657
|
ref: "fieldEditor",
|
|
10630
|
-
disabled:
|
|
10658
|
+
disabled: _ctx.getDisabled(),
|
|
10631
10659
|
style: normalizeStyle($data.styleVariables),
|
|
10632
10660
|
class: normalizeClass(["dynamicPseudoAfter", { hideUploadDiv: $data.uploadBtnHidden }]),
|
|
10633
10661
|
action: $options.realUploadURL,
|
|
@@ -10704,7 +10732,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10704
10732
|
_: 1
|
|
10705
10733
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
10706
10734
|
}
|
|
10707
|
-
var fileUploadWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$M, [["render", _sfc_render$M], ["__scopeId", "data-v-
|
|
10735
|
+
var fileUploadWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$M, [["render", _sfc_render$M], ["__scopeId", "data-v-6d3ed7e0"]]);
|
|
10708
10736
|
var __glob_0_7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
10709
10737
|
__proto__: null,
|
|
10710
10738
|
"default": fileUploadWidget
|
|
@@ -10870,7 +10898,7 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10870
10898
|
ref: "fieldEditor",
|
|
10871
10899
|
modelValue: $data.fieldModel,
|
|
10872
10900
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
10873
|
-
disabled:
|
|
10901
|
+
disabled: _ctx.getDisabled(),
|
|
10874
10902
|
readonly: $props.field.options.readonly,
|
|
10875
10903
|
size: _ctx.widgetSize,
|
|
10876
10904
|
class: "hide-spin-button",
|
|
@@ -10892,7 +10920,7 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10892
10920
|
name: "append",
|
|
10893
10921
|
fn: withCtx(() => [
|
|
10894
10922
|
createVNode(_component_el_button, {
|
|
10895
|
-
disabled:
|
|
10923
|
+
disabled: _ctx.getDisabled() || $props.field.options.appendButtonDisabled,
|
|
10896
10924
|
onClick: _ctx.emitAppendButtonClick
|
|
10897
10925
|
}, {
|
|
10898
10926
|
default: withCtx(() => [
|
|
@@ -10910,7 +10938,7 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10910
10938
|
_: 1
|
|
10911
10939
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
10912
10940
|
}
|
|
10913
|
-
var inputWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$K, [["render", _sfc_render$K], ["__scopeId", "data-v-
|
|
10941
|
+
var inputWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$K, [["render", _sfc_render$K], ["__scopeId", "data-v-0346e877"]]);
|
|
10914
10942
|
var __glob_0_10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
10915
10943
|
__proto__: null,
|
|
10916
10944
|
"default": inputWidget
|
|
@@ -10992,7 +11020,7 @@ function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
10992
11020
|
modelValue: $data.fieldModel,
|
|
10993
11021
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
10994
11022
|
class: "full-width-input",
|
|
10995
|
-
disabled:
|
|
11023
|
+
disabled: _ctx.getDisabled(),
|
|
10996
11024
|
size: _ctx.widgetSize,
|
|
10997
11025
|
"controls-position": $props.field.options.controlsPosition,
|
|
10998
11026
|
placeholder: $props.field.options.placeholder,
|
|
@@ -11008,7 +11036,7 @@ function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11008
11036
|
_: 1
|
|
11009
11037
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
11010
11038
|
}
|
|
11011
|
-
var numberWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$J, [["render", _sfc_render$J], ["__scopeId", "data-v-
|
|
11039
|
+
var numberWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$J, [["render", _sfc_render$J], ["__scopeId", "data-v-30c98522"]]);
|
|
11012
11040
|
var __glob_0_11 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
11013
11041
|
__proto__: null,
|
|
11014
11042
|
"default": numberWidget
|
|
@@ -11244,7 +11272,7 @@ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11244
11272
|
default: withCtx(() => [
|
|
11245
11273
|
createVNode(_component_el_upload, {
|
|
11246
11274
|
ref: "fieldEditor",
|
|
11247
|
-
disabled:
|
|
11275
|
+
disabled: _ctx.getDisabled(),
|
|
11248
11276
|
action: $options.realUploadURL,
|
|
11249
11277
|
headers: $data.uploadHeaders,
|
|
11250
11278
|
data: $data.uploadData,
|
|
@@ -11309,7 +11337,7 @@ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11309
11337
|
_: 1
|
|
11310
11338
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
11311
11339
|
}
|
|
11312
|
-
var pictureUploadWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$I, [["render", _sfc_render$I], ["__scopeId", "data-v-
|
|
11340
|
+
var pictureUploadWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$I, [["render", _sfc_render$I], ["__scopeId", "data-v-4d09ba72"]]);
|
|
11313
11341
|
var __glob_0_12 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
11314
11342
|
__proto__: null,
|
|
11315
11343
|
"default": pictureUploadWidget
|
|
@@ -11394,7 +11422,7 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11394
11422
|
modelValue: $data.fieldModel,
|
|
11395
11423
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
11396
11424
|
class: normalizeClass({ "radio-group-block": $props.field.options.displayStyle === "block" }),
|
|
11397
|
-
disabled:
|
|
11425
|
+
disabled: _ctx.getDisabled(),
|
|
11398
11426
|
size: _ctx.widgetSize,
|
|
11399
11427
|
onChange: _ctx.handleChangeEvent
|
|
11400
11428
|
}, {
|
|
@@ -11433,7 +11461,7 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11433
11461
|
_: 1
|
|
11434
11462
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
11435
11463
|
}
|
|
11436
|
-
var radioWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$H, [["render", _sfc_render$H], ["__scopeId", "data-v-
|
|
11464
|
+
var radioWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$H, [["render", _sfc_render$H], ["__scopeId", "data-v-2579b66d"]]);
|
|
11437
11465
|
var __glob_0_13 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
11438
11466
|
__proto__: null,
|
|
11439
11467
|
"default": radioWidget
|
|
@@ -11514,7 +11542,7 @@ function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11514
11542
|
ref: "fieldEditor",
|
|
11515
11543
|
modelValue: $data.fieldModel,
|
|
11516
11544
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
11517
|
-
disabled:
|
|
11545
|
+
disabled: _ctx.getDisabled(),
|
|
11518
11546
|
max: $props.field.options.max,
|
|
11519
11547
|
"low-threshold": $props.field.options.lowThreshold,
|
|
11520
11548
|
"high-threshold": $props.field.options.highThreshold,
|
|
@@ -11527,7 +11555,7 @@ function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
11527
11555
|
_: 1
|
|
11528
11556
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
11529
11557
|
}
|
|
11530
|
-
var rateWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$G, [["render", _sfc_render$G], ["__scopeId", "data-v-
|
|
11558
|
+
var rateWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$G, [["render", _sfc_render$G], ["__scopeId", "data-v-3c7d82fe"]]);
|
|
11531
11559
|
var __glob_0_14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
11532
11560
|
__proto__: null,
|
|
11533
11561
|
"default": rateWidget
|
|
@@ -23076,7 +23104,7 @@ function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23076
23104
|
value: $data.fieldModel,
|
|
23077
23105
|
"onUpdate:value": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23078
23106
|
options: $options.editorOption,
|
|
23079
|
-
disabled:
|
|
23107
|
+
disabled: _ctx.getDisabled(),
|
|
23080
23108
|
onBlur: $options.handleRichEditorBlurEvent,
|
|
23081
23109
|
onFocus: $options.handleRichEditorFocusEvent,
|
|
23082
23110
|
onChange: $options.handleRichEditorChangeEvent,
|
|
@@ -23087,7 +23115,7 @@ function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23087
23115
|
_: 1
|
|
23088
23116
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
23089
23117
|
}
|
|
23090
|
-
var richEditorWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$E, [["render", _sfc_render$E], ["__scopeId", "data-v-
|
|
23118
|
+
var richEditorWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$E, [["render", _sfc_render$E], ["__scopeId", "data-v-6f719fd1"]]);
|
|
23091
23119
|
var __glob_0_15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23092
23120
|
__proto__: null,
|
|
23093
23121
|
"default": richEditorWidget
|
|
@@ -23178,7 +23206,7 @@ function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23178
23206
|
"node-key": "value",
|
|
23179
23207
|
"default-expand-all": true,
|
|
23180
23208
|
"expand-on-click-node": false,
|
|
23181
|
-
disabled:
|
|
23209
|
+
disabled: _ctx.getDisabled(),
|
|
23182
23210
|
size: _ctx.widgetSize,
|
|
23183
23211
|
clearable: $props.field.options.clearable,
|
|
23184
23212
|
filterable: $props.field.options.filterable,
|
|
@@ -23305,7 +23333,7 @@ function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23305
23333
|
modelValue: $data.fieldModel,
|
|
23306
23334
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23307
23335
|
class: "full-width-input",
|
|
23308
|
-
disabled:
|
|
23336
|
+
disabled: _ctx.getDisabled(),
|
|
23309
23337
|
size: _ctx.widgetSize,
|
|
23310
23338
|
clearable: $props.field.options.clearable,
|
|
23311
23339
|
filterable: $props.field.options.filterable,
|
|
@@ -23337,7 +23365,7 @@ function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23337
23365
|
_: 1
|
|
23338
23366
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
23339
23367
|
}
|
|
23340
|
-
var selectWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$C, [["render", _sfc_render$C], ["__scopeId", "data-v-
|
|
23368
|
+
var selectWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$C, [["render", _sfc_render$C], ["__scopeId", "data-v-97221160"]]);
|
|
23341
23369
|
var __glob_0_17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23342
23370
|
__proto__: null,
|
|
23343
23371
|
"default": selectWidget
|
|
@@ -23418,7 +23446,7 @@ function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23418
23446
|
ref: "fieldEditor",
|
|
23419
23447
|
modelValue: $data.fieldModel,
|
|
23420
23448
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23421
|
-
disabled:
|
|
23449
|
+
disabled: _ctx.getDisabled(),
|
|
23422
23450
|
"show-stops": $props.field.options.showStops,
|
|
23423
23451
|
min: $props.field.options.min,
|
|
23424
23452
|
max: $props.field.options.max,
|
|
@@ -23431,7 +23459,7 @@ function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23431
23459
|
_: 1
|
|
23432
23460
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
23433
23461
|
}
|
|
23434
|
-
var sliderWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["render", _sfc_render$B], ["__scopeId", "data-v-
|
|
23462
|
+
var sliderWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["render", _sfc_render$B], ["__scopeId", "data-v-c9a31970"]]);
|
|
23435
23463
|
var __glob_0_18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23436
23464
|
__proto__: null,
|
|
23437
23465
|
"default": sliderWidget
|
|
@@ -23696,7 +23724,7 @@ function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23696
23724
|
ref: "fieldEditor",
|
|
23697
23725
|
modelValue: $data.fieldModel,
|
|
23698
23726
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23699
|
-
disabled:
|
|
23727
|
+
disabled: _ctx.getDisabled(),
|
|
23700
23728
|
"active-text": $props.field.options.activeText,
|
|
23701
23729
|
"inactive-text": $props.field.options.inactiveText,
|
|
23702
23730
|
"active-color": $props.field.options.activeColor,
|
|
@@ -23708,7 +23736,7 @@ function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23708
23736
|
_: 1
|
|
23709
23737
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
23710
23738
|
}
|
|
23711
|
-
var switchWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$y, [["render", _sfc_render$y], ["__scopeId", "data-v-
|
|
23739
|
+
var switchWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$y, [["render", _sfc_render$y], ["__scopeId", "data-v-2e8d2d0a"]]);
|
|
23712
23740
|
var __glob_0_22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23713
23741
|
__proto__: null,
|
|
23714
23742
|
"default": switchWidget
|
|
@@ -23790,7 +23818,7 @@ function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23790
23818
|
ref: "fieldEditor",
|
|
23791
23819
|
modelValue: $data.fieldModel,
|
|
23792
23820
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23793
|
-
disabled:
|
|
23821
|
+
disabled: _ctx.getDisabled(),
|
|
23794
23822
|
readonly: $props.field.options.readonly,
|
|
23795
23823
|
size: _ctx.widgetSize,
|
|
23796
23824
|
placeholder: $props.field.options.placeholder,
|
|
@@ -23807,7 +23835,7 @@ function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23807
23835
|
_: 1
|
|
23808
23836
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
23809
23837
|
}
|
|
23810
|
-
var textareaWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$x, [["render", _sfc_render$x], ["__scopeId", "data-v-
|
|
23838
|
+
var textareaWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$x, [["render", _sfc_render$x], ["__scopeId", "data-v-687fedce"]]);
|
|
23811
23839
|
var __glob_0_23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23812
23840
|
__proto__: null,
|
|
23813
23841
|
"default": textareaWidget
|
|
@@ -23893,7 +23921,7 @@ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23893
23921
|
modelValue: $data.fieldModel,
|
|
23894
23922
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23895
23923
|
class: normalizeClass([!!$props.field.options.autoFullWidth ? "full-width-input" : ""]),
|
|
23896
|
-
disabled:
|
|
23924
|
+
disabled: _ctx.getDisabled(),
|
|
23897
23925
|
readonly: $props.field.options.readonly,
|
|
23898
23926
|
size: _ctx.widgetSize,
|
|
23899
23927
|
clearable: $props.field.options.clearable,
|
|
@@ -23911,7 +23939,7 @@ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23911
23939
|
_: 1
|
|
23912
23940
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
23913
23941
|
}
|
|
23914
|
-
var timeRangeWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["render", _sfc_render$w], ["__scopeId", "data-v-
|
|
23942
|
+
var timeRangeWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["render", _sfc_render$w], ["__scopeId", "data-v-f78e9b46"]]);
|
|
23915
23943
|
var __glob_0_24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23916
23944
|
__proto__: null,
|
|
23917
23945
|
"default": timeRangeWidget
|
|
@@ -23993,7 +24021,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23993
24021
|
modelValue: $data.fieldModel,
|
|
23994
24022
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.fieldModel = $event),
|
|
23995
24023
|
class: normalizeClass([!!$props.field.options.autoFullWidth ? "auto-full-width" : ""]),
|
|
23996
|
-
disabled:
|
|
24024
|
+
disabled: _ctx.getDisabled(),
|
|
23997
24025
|
readonly: $props.field.options.readonly,
|
|
23998
24026
|
size: _ctx.widgetSize,
|
|
23999
24027
|
clearable: $props.field.options.clearable,
|
|
@@ -24009,7 +24037,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24009
24037
|
_: 1
|
|
24010
24038
|
}, 8, ["designer", "field", "rules", "design-state", "parent-widget", "parent-list", "index-of-parent-list", "sub-form-row-index", "sub-form-col-index", "sub-form-row-id"]);
|
|
24011
24039
|
}
|
|
24012
|
-
var timeWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["render", _sfc_render$v], ["__scopeId", "data-v-
|
|
24040
|
+
var timeWidget = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["render", _sfc_render$v], ["__scopeId", "data-v-60cd3a6a"]]);
|
|
24013
24041
|
var __glob_0_25 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24014
24042
|
__proto__: null,
|
|
24015
24043
|
"default": timeWidget
|
|
@@ -24050,6 +24078,10 @@ const _sfc_main$u = {
|
|
|
24050
24078
|
fieldSchemaData: {
|
|
24051
24079
|
type: Array,
|
|
24052
24080
|
default: void 0
|
|
24081
|
+
},
|
|
24082
|
+
subFormDisabled: {
|
|
24083
|
+
type: Boolean,
|
|
24084
|
+
default: false
|
|
24053
24085
|
}
|
|
24054
24086
|
},
|
|
24055
24087
|
inject: ["refList", "globalModel", "getFormConfig", "previewState"],
|
|
@@ -24151,7 +24183,9 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24151
24183
|
"parent-widget": $props.widget,
|
|
24152
24184
|
"sub-form-row-index": $props.subFormRowIndex,
|
|
24153
24185
|
"sub-form-row-id": $props.subFormRowId,
|
|
24154
|
-
"sub-form-col-index": $props.subFormColIndex
|
|
24186
|
+
"sub-form-col-index": $props.subFormColIndex,
|
|
24187
|
+
"sub-form-disabled": $props.subFormDisabled,
|
|
24188
|
+
disabled: _ctx.disabled || $props.widget.options.disabled
|
|
24155
24189
|
}, createSlots({ _: 2 }, [
|
|
24156
24190
|
renderList(Object.keys(_ctx.$slots), (slot) => {
|
|
24157
24191
|
return {
|
|
@@ -24161,7 +24195,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24161
24195
|
])
|
|
24162
24196
|
};
|
|
24163
24197
|
})
|
|
24164
|
-
]), 1032, ["widget", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index"])) : (openBlock(), createBlock(resolveDynamicComponent(subWidget.type + "-widget"), {
|
|
24198
|
+
]), 1032, ["widget", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index", "sub-form-disabled", "disabled"])) : (openBlock(), createBlock(resolveDynamicComponent(subWidget.type + "-widget"), {
|
|
24165
24199
|
field: $props.fieldSchemaData && $props.fieldSchemaData[swIdx] ? $props.fieldSchemaData[swIdx] : subWidget,
|
|
24166
24200
|
designer: null,
|
|
24167
24201
|
key: $props.fieldSchemaData && $props.fieldSchemaData[swIdx] ? $props.fieldSchemaData[swIdx].id : swIdx,
|
|
@@ -24170,6 +24204,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24170
24204
|
"parent-widget": $props.parentWidget,
|
|
24171
24205
|
"sub-form-row-index": $props.subFormRowIndex,
|
|
24172
24206
|
"sub-form-row-id": $props.subFormRowId,
|
|
24207
|
+
"sub-form-disabled": $props.subFormDisabled,
|
|
24173
24208
|
"sub-form-col-index": $props.subFormColIndex
|
|
24174
24209
|
}, createSlots({ _: 2 }, [
|
|
24175
24210
|
renderList(Object.keys(_ctx.$slots), (slot) => {
|
|
@@ -24180,7 +24215,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24180
24215
|
])
|
|
24181
24216
|
};
|
|
24182
24217
|
})
|
|
24183
|
-
]), 1032, ["field", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index"]))
|
|
24218
|
+
]), 1032, ["field", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-index", "sub-form-row-id", "sub-form-disabled", "sub-form-col-index"]))
|
|
24184
24219
|
], 64);
|
|
24185
24220
|
}), 256)) : (openBlock(), createBlock(_component_el_col, { key: 1 }, {
|
|
24186
24221
|
default: withCtx(() => [
|
|
@@ -24196,7 +24231,7 @@ function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24196
24231
|
[vShow, $options.colVisible]
|
|
24197
24232
|
]) : createCommentVNode("", true);
|
|
24198
24233
|
}
|
|
24199
|
-
var GridColItem = /* @__PURE__ */ _export_sfc$1(_sfc_main$u, [["render", _sfc_render$u], ["__scopeId", "data-v-
|
|
24234
|
+
var GridColItem = /* @__PURE__ */ _export_sfc$1(_sfc_main$u, [["render", _sfc_render$u], ["__scopeId", "data-v-bc1d425a"]]);
|
|
24200
24235
|
var __glob_0_1$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24201
24236
|
__proto__: null,
|
|
24202
24237
|
"default": GridColItem
|
|
@@ -24416,6 +24451,10 @@ const _sfc_main$t = {
|
|
|
24416
24451
|
fieldSchemaData: {
|
|
24417
24452
|
type: Object,
|
|
24418
24453
|
default: void 0
|
|
24454
|
+
},
|
|
24455
|
+
subFormDisabled: {
|
|
24456
|
+
type: Boolean,
|
|
24457
|
+
default: false
|
|
24419
24458
|
}
|
|
24420
24459
|
},
|
|
24421
24460
|
inject: ["refList", "sfRefList", "globalModel"],
|
|
@@ -24453,6 +24492,7 @@ function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24453
24492
|
"sub-form-row-index": $props.subFormRowIndex,
|
|
24454
24493
|
"sub-form-row-id": $props.subFormRowId,
|
|
24455
24494
|
"sub-form-col-index": $props.subFormColIndex,
|
|
24495
|
+
"sub-form-disabled": $props.subFormDisabled,
|
|
24456
24496
|
"field-schema-data": $props.fieldSchemaData
|
|
24457
24497
|
}, createSlots({ _: 2 }, [
|
|
24458
24498
|
renderList(Object.keys(_ctx.$slots), (slot) => {
|
|
@@ -24463,7 +24503,7 @@ function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24463
24503
|
])
|
|
24464
24504
|
};
|
|
24465
24505
|
})
|
|
24466
|
-
]), 1032, ["widget", "parent-list", "index-of-parent-list", "parent-widget", "col-height", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index", "field-schema-data"]);
|
|
24506
|
+
]), 1032, ["widget", "parent-list", "index-of-parent-list", "parent-widget", "col-height", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index", "sub-form-disabled", "field-schema-data"]);
|
|
24467
24507
|
}), 128))
|
|
24468
24508
|
]),
|
|
24469
24509
|
_: 3
|
|
@@ -25827,13 +25867,13 @@ function registerIcon(app) {
|
|
|
25827
25867
|
if (typeof window !== "undefined") {
|
|
25828
25868
|
let loadSvg = function() {
|
|
25829
25869
|
var body = document.body;
|
|
25830
|
-
var svgDom = document.getElementById("
|
|
25870
|
+
var svgDom = document.getElementById("__svg__icons__dom__1772675919581__");
|
|
25831
25871
|
if (!svgDom) {
|
|
25832
25872
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
25833
25873
|
svgDom.style.position = "absolute";
|
|
25834
25874
|
svgDom.style.width = "0";
|
|
25835
25875
|
svgDom.style.height = "0";
|
|
25836
|
-
svgDom.id = "
|
|
25876
|
+
svgDom.id = "__svg__icons__dom__1772675919581__";
|
|
25837
25877
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
25838
25878
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
25839
25879
|
}
|
|
@@ -34334,7 +34374,7 @@ const _sfc_main$9 = {
|
|
|
34334
34374
|
return void 0;
|
|
34335
34375
|
}
|
|
34336
34376
|
if (containerSchema.widgetList && Array.isArray(containerSchema.widgetList)) {
|
|
34337
|
-
return containerSchema.widgetList;
|
|
34377
|
+
return __spreadProps(__spreadValues({}, containerSchema.widgetList), { disabled: this.widget.options.disabled });
|
|
34338
34378
|
}
|
|
34339
34379
|
return void 0;
|
|
34340
34380
|
}
|
|
@@ -34425,9 +34465,9 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
34425
34465
|
"sub-form-row-index": sfrIdx,
|
|
34426
34466
|
"sub-form-row-id": subFormRowId,
|
|
34427
34467
|
"sub-form-col-index": swIdx,
|
|
34428
|
-
|
|
34468
|
+
subFormDisabled: $props.widget.options.disabled,
|
|
34429
34469
|
"field-schema-data": $options.getFieldSchemaDataForContainer(subWidget, sfrIdx, swIdx)
|
|
34430
|
-
}, null, 8, ["widget", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index", "
|
|
34470
|
+
}, null, 8, ["widget", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-index", "sub-form-row-id", "sub-form-col-index", "subFormDisabled", "field-schema-data"])) : subWidget ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
34431
34471
|
$data.fieldSchemaData && $data.fieldSchemaData[sfrIdx] && $data.fieldSchemaData[sfrIdx][swIdx] ? (openBlock(), createBlock(resolveDynamicComponent($options.getComponentName(subWidget)), {
|
|
34432
34472
|
key: 0,
|
|
34433
34473
|
field: $data.fieldSchemaData[sfrIdx][swIdx],
|
|
@@ -34437,8 +34477,8 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
34437
34477
|
"sub-form-row-id": subFormRowId,
|
|
34438
34478
|
"sub-form-row-index": sfrIdx,
|
|
34439
34479
|
"sub-form-col-index": swIdx,
|
|
34440
|
-
disabled: $props.widget.options.disabled
|
|
34441
|
-
}, null, 8, ["field", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-id", "sub-form-row-index", "sub-form-col-index", "disabled"])) : (openBlock(), createElementBlock("div", _hoisted_9, " \u5B57\u6BB5\u52A0\u8F7D\u4E2D... "))
|
|
34480
|
+
"sub-form-disabled": $props.widget.options.disabled
|
|
34481
|
+
}, null, 8, ["field", "parent-list", "index-of-parent-list", "parent-widget", "sub-form-row-id", "sub-form-row-index", "sub-form-col-index", "sub-form-disabled"])) : (openBlock(), createElementBlock("div", _hoisted_9, " \u5B57\u6BB5\u52A0\u8F7D\u4E2D... "))
|
|
34442
34482
|
], 64)) : createCommentVNode("", true)
|
|
34443
34483
|
], 64);
|
|
34444
34484
|
}), 128)) : (openBlock(), createElementBlock("div", _hoisted_10, [
|
|
@@ -34469,7 +34509,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
34469
34509
|
_: 1
|
|
34470
34510
|
}, 8, ["widget"]);
|
|
34471
34511
|
}
|
|
34472
|
-
var CustomSubFormItem = /* @__PURE__ */ _export_sfc$1(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-
|
|
34512
|
+
var CustomSubFormItem = /* @__PURE__ */ _export_sfc$1(_sfc_main$9, [["render", _sfc_render$9], ["__scopeId", "data-v-3754189c"]]);
|
|
34473
34513
|
var customTableCellWidget_vue_vue_type_style_index_0_scoped_true_lang = "";
|
|
34474
34514
|
const _sfc_main$8 = {
|
|
34475
34515
|
name: "custom-table-cell-widget",
|