starfish-form-custom 1.0.0 → 1.0.2
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/{formAction-28d86b6a.mjs → formAction-f22cc5f4.mjs} +65 -61
- package/dist/{index-f7ea052c.mjs → index-07a56f42.mjs} +27 -25
- package/dist/{index-04830c0b.mjs → index-6414efee.mjs} +12 -12
- package/dist/{index-eab8ef70.mjs → index-6e5bd506.mjs} +71 -68
- package/dist/{main-96327b2e.mjs → main-2d947b2c.mjs} +290 -237
- package/dist/{starfish-form-a18a5409.mjs → starfish-form-a993ec26.mjs} +6 -5
- package/dist/starfish-form.mjs +3 -3
- package/dist/style.css +7 -2
- package/dist/types/form/src/common/Loading.vue.d.ts +2 -2
- package/dist/types/form/src/common/formAction.vue.d.ts +85 -0
- package/dist/types/form/src/main.d.ts +10 -8
- package/dist/types/form/src/starfish-form.vue.d.ts +10 -8
- package/package.json +1 -1
- package/src/common/KeyValueConfig.vue +7 -4
- package/src/common/KeyValueConfigMult.vue +7 -4
- package/src/common/formAction.vue +8 -3
- package/src/common/listConfig.vue +3 -3
- package/src/common/panel.vue +3 -3
- package/src/components/ColorSelect/index.vue +2 -2
- package/src/components/Rule/index.vue +3 -0
- package/stats.html +2122 -2229
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { ElTooltip, ElCheckbox, ElInput, ElLoadingDirective, ElOption, ElSelect, ElCol,
|
|
1
|
+
import { ElTooltip, ElCheckbox, ElInput, ElIcon, ElLoadingDirective, ElOption, ElSelect, ElCol, ElButton, ElRow, ElCollapseItem, ElCollapse, ElDropdownItem, ElDropdownMenu, ElDropdown, ElInputNumber, ElRadioButton, ElRadioGroup, ElCheckboxGroup, ElColorPicker, ElDatePicker, ElRadio, ElSlider, ElSwitch, ElTimeSelect, ElDivider, ElAlert, ElFormItem, ElTabPane, ElTabs } from 'element-plus/es';
|
|
2
2
|
import 'element-plus/es/components/base/style/css';
|
|
3
|
+
import 'element-plus/es/components/icon/style/css';
|
|
3
4
|
import 'element-plus/es/components/input/style/css';
|
|
4
5
|
import 'element-plus/es/components/checkbox/style/css';
|
|
5
6
|
import 'element-plus/es/components/tooltip/style/css';
|
|
6
|
-
import { defineComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, Fragment, renderList, createVNode, withDirectives, inject, computed, ref,
|
|
7
|
+
import { defineComponent, resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, normalizeStyle, toDisplayString, createCommentVNode, createBlock, withCtx, Fragment, renderList, createVNode, withDirectives, inject, computed, ref, createTextVNode, getCurrentInstance, watch, pushScopeId, popScopeId, resolveDynamicComponent, nextTick, reactive, defineAsyncComponent } from 'vue';
|
|
8
|
+
import { Plus, SemiSelect, Delete, Edit } from '@element-plus/icons-vue';
|
|
7
9
|
import 'element-plus/es/components/loading/style/css';
|
|
8
10
|
import 'element-plus/es/components/dropdown/style/css';
|
|
9
11
|
import 'element-plus/es/components/dropdown-menu/style/css';
|
|
@@ -12,11 +14,9 @@ import 'element-plus/es/components/collapse/style/css';
|
|
|
12
14
|
import 'element-plus/es/components/collapse-item/style/css';
|
|
13
15
|
import 'element-plus/es/components/row/style/css';
|
|
14
16
|
import 'element-plus/es/components/button/style/css';
|
|
15
|
-
import 'element-plus/es/components/icon/style/css';
|
|
16
17
|
import 'element-plus/es/components/col/style/css';
|
|
17
18
|
import 'element-plus/es/components/select/style/css';
|
|
18
19
|
import 'element-plus/es/components/option/style/css';
|
|
19
|
-
import { Delete, Edit } from '@element-plus/icons-vue';
|
|
20
20
|
import 'element-plus/es/components/input-number/style/css';
|
|
21
21
|
import 'element-plus/es/components/radio-group/style/css';
|
|
22
22
|
import 'element-plus/es/components/radio-button/style/css';
|
|
@@ -990,6 +990,8 @@ const _sfc_main$r = defineComponent({
|
|
|
990
990
|
return maxId + 1;
|
|
991
991
|
}
|
|
992
992
|
return {
|
|
993
|
+
Plus,
|
|
994
|
+
SemiSelect,
|
|
993
995
|
getChangeValue(sitem) {
|
|
994
996
|
const data = props.data;
|
|
995
997
|
const item = props.item;
|
|
@@ -1063,23 +1065,37 @@ const _sfc_main$r = defineComponent({
|
|
|
1063
1065
|
};
|
|
1064
1066
|
}
|
|
1065
1067
|
});
|
|
1066
|
-
const _hoisted_1$
|
|
1068
|
+
const _hoisted_1$r = {
|
|
1067
1069
|
key: 0,
|
|
1068
1070
|
class: "item_require"
|
|
1069
1071
|
};
|
|
1070
|
-
const _hoisted_2$
|
|
1071
|
-
const _hoisted_3$
|
|
1072
|
-
const _hoisted_4$
|
|
1073
|
-
const _hoisted_5$
|
|
1074
|
-
const _hoisted_6$
|
|
1075
|
-
const _hoisted_7$1 =
|
|
1076
|
-
const _hoisted_8$1 =
|
|
1077
|
-
const _hoisted_9$1 =
|
|
1072
|
+
const _hoisted_2$k = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
1073
|
+
const _hoisted_3$7 = { class: "keyValueSelect" };
|
|
1074
|
+
const _hoisted_4$4 = { class: "keyValueInput" };
|
|
1075
|
+
const _hoisted_5$2 = { class: "inputItem" };
|
|
1076
|
+
const _hoisted_6$2 = /* @__PURE__ */ createElementVNode("span", null, "\u6587\u672C\uFF1A", -1);
|
|
1077
|
+
const _hoisted_7$1 = { class: "inputItem" };
|
|
1078
|
+
const _hoisted_8$1 = /* @__PURE__ */ createElementVNode("span", null, "\u503C\uFF1A", -1);
|
|
1079
|
+
const _hoisted_9$1 = { class: "keyValueControl" };
|
|
1078
1080
|
const _hoisted_10$1 = ["onClick"];
|
|
1081
|
+
const _hoisted_11$1 = ["onClick"];
|
|
1082
|
+
const _hoisted_12$1 = ["onClick"];
|
|
1083
|
+
const _hoisted_13$1 = /* @__PURE__ */ createElementVNode("i", { class: "iconfontui icon-shangyi" }, null, -1);
|
|
1084
|
+
const _hoisted_14$1 = [
|
|
1085
|
+
_hoisted_13$1
|
|
1086
|
+
];
|
|
1087
|
+
const _hoisted_15$1 = ["onClick"];
|
|
1088
|
+
const _hoisted_16$1 = /* @__PURE__ */ createElementVNode("i", { class: "iconfontui icon-xiayi" }, null, -1);
|
|
1089
|
+
const _hoisted_17$1 = [
|
|
1090
|
+
_hoisted_16$1
|
|
1091
|
+
];
|
|
1079
1092
|
function _sfc_render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1080
1093
|
const _component_el_tooltip = ElTooltip;
|
|
1081
1094
|
const _component_el_checkbox = ElCheckbox;
|
|
1082
1095
|
const _component_el_input = ElInput;
|
|
1096
|
+
const _component_Plus = resolveComponent("Plus");
|
|
1097
|
+
const _component_el_icon = ElIcon;
|
|
1098
|
+
const _component_SemiSelect = resolveComponent("SemiSelect");
|
|
1083
1099
|
return openBlock(), createElementBlock("div", {
|
|
1084
1100
|
class: normalizeClass(["starfish-formitem starfish-formitem-action", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }])
|
|
1085
1101
|
}, [
|
|
@@ -1088,7 +1104,7 @@ function _sfc_render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1088
1104
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
1089
1105
|
}, [
|
|
1090
1106
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
1091
|
-
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_1$
|
|
1107
|
+
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_1$r, "*")) : createCommentVNode("", true),
|
|
1092
1108
|
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
1093
1109
|
key: 1,
|
|
1094
1110
|
class: "item",
|
|
@@ -1096,11 +1112,10 @@ function _sfc_render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1096
1112
|
content: _ctx.item.data.tip,
|
|
1097
1113
|
placement: "top"
|
|
1098
1114
|
}, {
|
|
1099
|
-
default: withCtx(() =>
|
|
1100
|
-
|
|
1101
|
-
])
|
|
1102
|
-
_: 1
|
|
1103
|
-
__: [0]
|
|
1115
|
+
default: withCtx(() => [
|
|
1116
|
+
_hoisted_2$k
|
|
1117
|
+
]),
|
|
1118
|
+
_: 1
|
|
1104
1119
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
1105
1120
|
], 6),
|
|
1106
1121
|
createElementVNode("div", {
|
|
@@ -1112,62 +1127,74 @@ function _sfc_render$r(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1112
1127
|
class: "starfish-keyValueItem",
|
|
1113
1128
|
key: index
|
|
1114
1129
|
}, [
|
|
1115
|
-
createElementVNode("div",
|
|
1130
|
+
createElementVNode("div", _hoisted_3$7, [
|
|
1116
1131
|
createVNode(_component_el_checkbox, {
|
|
1117
1132
|
modelValue: items.select,
|
|
1118
1133
|
"onUpdate:modelValue": ($event) => items.select = $event,
|
|
1119
1134
|
onChange: ($event) => _ctx.getChangeSelect(items)
|
|
1120
1135
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "onChange"])
|
|
1121
1136
|
]),
|
|
1122
|
-
createElementVNode("div",
|
|
1123
|
-
createElementVNode("div",
|
|
1124
|
-
|
|
1137
|
+
createElementVNode("div", _hoisted_4$4, [
|
|
1138
|
+
createElementVNode("div", _hoisted_5$2, [
|
|
1139
|
+
_hoisted_6$2,
|
|
1125
1140
|
createElementVNode("div", null, [
|
|
1126
1141
|
createVNode(_component_el_input, {
|
|
1127
1142
|
modelValue: items.label,
|
|
1128
1143
|
"onUpdate:modelValue": ($event) => items.label = $event,
|
|
1129
|
-
size: "
|
|
1144
|
+
size: "default",
|
|
1130
1145
|
onInput: ($event) => _ctx.getChangeValue(items)
|
|
1131
1146
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "onInput"])
|
|
1132
1147
|
])
|
|
1133
1148
|
]),
|
|
1134
|
-
createElementVNode("div",
|
|
1135
|
-
|
|
1149
|
+
createElementVNode("div", _hoisted_7$1, [
|
|
1150
|
+
_hoisted_8$1,
|
|
1136
1151
|
createElementVNode("div", null, [
|
|
1137
1152
|
createVNode(_component_el_input, {
|
|
1138
1153
|
modelValue: items.value,
|
|
1139
1154
|
"onUpdate:modelValue": ($event) => items.value = $event,
|
|
1140
|
-
size: "
|
|
1155
|
+
size: "default",
|
|
1141
1156
|
onInput: ($event) => _ctx.getChangeValue(items)
|
|
1142
1157
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "onInput"])
|
|
1143
1158
|
])
|
|
1144
1159
|
])
|
|
1145
1160
|
]),
|
|
1146
|
-
createElementVNode("div",
|
|
1161
|
+
createElementVNode("div", _hoisted_9$1, [
|
|
1147
1162
|
createElementVNode("div", {
|
|
1148
1163
|
class: "add",
|
|
1149
1164
|
onClick: ($event) => _ctx.addItem(index)
|
|
1150
|
-
},
|
|
1151
|
-
|
|
1152
|
-
|
|
1165
|
+
}, [
|
|
1166
|
+
createVNode(_component_el_icon, {
|
|
1167
|
+
size: 12,
|
|
1168
|
+
style: { "color": "#fff" }
|
|
1169
|
+
}, {
|
|
1170
|
+
default: withCtx(() => [
|
|
1171
|
+
createVNode(_component_Plus)
|
|
1172
|
+
]),
|
|
1173
|
+
_: 1
|
|
1174
|
+
})
|
|
1175
|
+
], 8, _hoisted_10$1),
|
|
1153
1176
|
createElementVNode("div", {
|
|
1154
1177
|
class: "remove",
|
|
1155
1178
|
onClick: ($event) => _ctx.removeItem(index)
|
|
1156
|
-
},
|
|
1157
|
-
|
|
1158
|
-
|
|
1179
|
+
}, [
|
|
1180
|
+
createVNode(_component_el_icon, {
|
|
1181
|
+
size: 12,
|
|
1182
|
+
style: { "color": "#fff" }
|
|
1183
|
+
}, {
|
|
1184
|
+
default: withCtx(() => [
|
|
1185
|
+
createVNode(_component_SemiSelect)
|
|
1186
|
+
]),
|
|
1187
|
+
_: 1
|
|
1188
|
+
})
|
|
1189
|
+
], 8, _hoisted_11$1),
|
|
1159
1190
|
createElementVNode("div", {
|
|
1160
1191
|
class: "top",
|
|
1161
1192
|
onClick: ($event) => _ctx.handleTop(index)
|
|
1162
|
-
},
|
|
1163
|
-
createElementVNode("i", { class: "iconfontui icon-shangyi" }, null, -1)
|
|
1164
|
-
]), 8, _hoisted_9$1),
|
|
1193
|
+
}, _hoisted_14$1, 8, _hoisted_12$1),
|
|
1165
1194
|
createElementVNode("div", {
|
|
1166
1195
|
class: "bottom",
|
|
1167
1196
|
onClick: ($event) => _ctx.handleBottom(index)
|
|
1168
|
-
},
|
|
1169
|
-
createElementVNode("i", { class: "iconfontui icon-xiayi" }, null, -1)
|
|
1170
|
-
]), 8, _hoisted_10$1)
|
|
1197
|
+
}, _hoisted_17$1, 8, _hoisted_15$1)
|
|
1171
1198
|
])
|
|
1172
1199
|
]);
|
|
1173
1200
|
}), 128))
|
|
@@ -1203,6 +1230,8 @@ const _sfc_main$q = defineComponent({
|
|
|
1203
1230
|
return maxId + 1;
|
|
1204
1231
|
}
|
|
1205
1232
|
return {
|
|
1233
|
+
Plus,
|
|
1234
|
+
SemiSelect,
|
|
1206
1235
|
getChangeValue() {
|
|
1207
1236
|
const data = props.data;
|
|
1208
1237
|
const item = props.item;
|
|
@@ -1270,23 +1299,37 @@ const _sfc_main$q = defineComponent({
|
|
|
1270
1299
|
};
|
|
1271
1300
|
}
|
|
1272
1301
|
});
|
|
1273
|
-
const _hoisted_1$
|
|
1302
|
+
const _hoisted_1$q = {
|
|
1274
1303
|
key: 0,
|
|
1275
1304
|
class: "item_require"
|
|
1276
1305
|
};
|
|
1277
|
-
const _hoisted_2$
|
|
1278
|
-
const _hoisted_3$
|
|
1279
|
-
const _hoisted_4 = { class: "
|
|
1280
|
-
const _hoisted_5 = { class: "inputItem" };
|
|
1281
|
-
const _hoisted_6 =
|
|
1282
|
-
const _hoisted_7 =
|
|
1283
|
-
const _hoisted_8 =
|
|
1284
|
-
const _hoisted_9 =
|
|
1306
|
+
const _hoisted_2$j = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
1307
|
+
const _hoisted_3$6 = { class: "keyValueSelect" };
|
|
1308
|
+
const _hoisted_4$3 = { class: "keyValueInput" };
|
|
1309
|
+
const _hoisted_5$1 = { class: "inputItem" };
|
|
1310
|
+
const _hoisted_6$1 = /* @__PURE__ */ createElementVNode("span", null, "\u6587\u672C\uFF1A", -1);
|
|
1311
|
+
const _hoisted_7 = { class: "inputItem" };
|
|
1312
|
+
const _hoisted_8 = /* @__PURE__ */ createElementVNode("span", null, "\u503C\uFF1A", -1);
|
|
1313
|
+
const _hoisted_9 = { class: "keyValueControl" };
|
|
1285
1314
|
const _hoisted_10 = ["onClick"];
|
|
1315
|
+
const _hoisted_11 = ["onClick"];
|
|
1316
|
+
const _hoisted_12 = ["onClick"];
|
|
1317
|
+
const _hoisted_13 = /* @__PURE__ */ createElementVNode("i", { class: "iconfontui icon-shangyi" }, null, -1);
|
|
1318
|
+
const _hoisted_14 = [
|
|
1319
|
+
_hoisted_13
|
|
1320
|
+
];
|
|
1321
|
+
const _hoisted_15 = ["onClick"];
|
|
1322
|
+
const _hoisted_16 = /* @__PURE__ */ createElementVNode("i", { class: "iconfontui icon-xiayi" }, null, -1);
|
|
1323
|
+
const _hoisted_17 = [
|
|
1324
|
+
_hoisted_16
|
|
1325
|
+
];
|
|
1286
1326
|
function _sfc_render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1287
1327
|
const _component_el_tooltip = ElTooltip;
|
|
1288
1328
|
const _component_el_checkbox = ElCheckbox;
|
|
1289
1329
|
const _component_el_input = ElInput;
|
|
1330
|
+
const _component_Plus = resolveComponent("Plus");
|
|
1331
|
+
const _component_el_icon = ElIcon;
|
|
1332
|
+
const _component_SemiSelect = resolveComponent("SemiSelect");
|
|
1290
1333
|
return openBlock(), createElementBlock("div", {
|
|
1291
1334
|
class: normalizeClass(["starfish-formitem", { formCover: _ctx.drag, "starfish-vertical": _ctx.labelalign != "top", [_ctx.item.data.csslist?.join(" ")]: !!_ctx.item.data.csslist }])
|
|
1292
1335
|
}, [
|
|
@@ -1295,7 +1338,7 @@ function _sfc_render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1295
1338
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
1296
1339
|
}, [
|
|
1297
1340
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
1298
|
-
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_1$
|
|
1341
|
+
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_1$q, "*")) : createCommentVNode("", true),
|
|
1299
1342
|
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
1300
1343
|
key: 1,
|
|
1301
1344
|
class: "item",
|
|
@@ -1303,11 +1346,10 @@ function _sfc_render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1303
1346
|
content: _ctx.item.data.tip,
|
|
1304
1347
|
placement: "top"
|
|
1305
1348
|
}, {
|
|
1306
|
-
default: withCtx(() =>
|
|
1307
|
-
|
|
1308
|
-
])
|
|
1309
|
-
_: 1
|
|
1310
|
-
__: [2]
|
|
1349
|
+
default: withCtx(() => [
|
|
1350
|
+
_hoisted_2$j
|
|
1351
|
+
]),
|
|
1352
|
+
_: 1
|
|
1311
1353
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
1312
1354
|
], 6),
|
|
1313
1355
|
createElementVNode("div", {
|
|
@@ -1319,62 +1361,74 @@ function _sfc_render$q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1319
1361
|
class: "starfish-keyValueItem",
|
|
1320
1362
|
key: index
|
|
1321
1363
|
}, [
|
|
1322
|
-
createElementVNode("div",
|
|
1364
|
+
createElementVNode("div", _hoisted_3$6, [
|
|
1323
1365
|
createVNode(_component_el_checkbox, {
|
|
1324
1366
|
modelValue: items.select,
|
|
1325
1367
|
"onUpdate:modelValue": ($event) => items.select = $event,
|
|
1326
1368
|
onChange: ($event) => _ctx.getChangeSelect(items)
|
|
1327
1369
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "onChange"])
|
|
1328
1370
|
]),
|
|
1329
|
-
createElementVNode("div",
|
|
1330
|
-
createElementVNode("div",
|
|
1331
|
-
|
|
1371
|
+
createElementVNode("div", _hoisted_4$3, [
|
|
1372
|
+
createElementVNode("div", _hoisted_5$1, [
|
|
1373
|
+
_hoisted_6$1,
|
|
1332
1374
|
createElementVNode("div", null, [
|
|
1333
1375
|
createVNode(_component_el_input, {
|
|
1334
1376
|
modelValue: items.label,
|
|
1335
1377
|
"onUpdate:modelValue": ($event) => items.label = $event,
|
|
1336
|
-
size: "
|
|
1378
|
+
size: "default",
|
|
1337
1379
|
onInput: _cache[0] || (_cache[0] = ($event) => _ctx.getChangeValue())
|
|
1338
1380
|
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
1339
1381
|
])
|
|
1340
1382
|
]),
|
|
1341
|
-
createElementVNode("div",
|
|
1342
|
-
|
|
1383
|
+
createElementVNode("div", _hoisted_7, [
|
|
1384
|
+
_hoisted_8,
|
|
1343
1385
|
createElementVNode("div", null, [
|
|
1344
1386
|
createVNode(_component_el_input, {
|
|
1345
1387
|
modelValue: items.value,
|
|
1346
1388
|
"onUpdate:modelValue": ($event) => items.value = $event,
|
|
1347
|
-
size: "
|
|
1389
|
+
size: "default",
|
|
1348
1390
|
onInput: _cache[1] || (_cache[1] = ($event) => _ctx.getChangeValue())
|
|
1349
1391
|
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
1350
1392
|
])
|
|
1351
1393
|
])
|
|
1352
1394
|
]),
|
|
1353
|
-
createElementVNode("div",
|
|
1395
|
+
createElementVNode("div", _hoisted_9, [
|
|
1354
1396
|
createElementVNode("div", {
|
|
1355
1397
|
class: "add",
|
|
1356
1398
|
onClick: ($event) => _ctx.addItem(index)
|
|
1357
|
-
},
|
|
1358
|
-
|
|
1359
|
-
|
|
1399
|
+
}, [
|
|
1400
|
+
createVNode(_component_el_icon, {
|
|
1401
|
+
size: 12,
|
|
1402
|
+
style: { "color": "#fff" }
|
|
1403
|
+
}, {
|
|
1404
|
+
default: withCtx(() => [
|
|
1405
|
+
createVNode(_component_Plus)
|
|
1406
|
+
]),
|
|
1407
|
+
_: 1
|
|
1408
|
+
})
|
|
1409
|
+
], 8, _hoisted_10),
|
|
1360
1410
|
createElementVNode("div", {
|
|
1361
1411
|
class: "remove",
|
|
1362
1412
|
onClick: ($event) => _ctx.removeItem(index)
|
|
1363
|
-
},
|
|
1364
|
-
|
|
1365
|
-
|
|
1413
|
+
}, [
|
|
1414
|
+
createVNode(_component_el_icon, {
|
|
1415
|
+
size: 12,
|
|
1416
|
+
style: { "color": "#fff" }
|
|
1417
|
+
}, {
|
|
1418
|
+
default: withCtx(() => [
|
|
1419
|
+
createVNode(_component_SemiSelect)
|
|
1420
|
+
]),
|
|
1421
|
+
_: 1
|
|
1422
|
+
})
|
|
1423
|
+
], 8, _hoisted_11),
|
|
1366
1424
|
createElementVNode("div", {
|
|
1367
1425
|
class: "top",
|
|
1368
1426
|
onClick: ($event) => _ctx.handleTop(index)
|
|
1369
|
-
},
|
|
1370
|
-
createElementVNode("i", { class: "iconfontui icon-shangyi" }, null, -1)
|
|
1371
|
-
]), 8, _hoisted_9),
|
|
1427
|
+
}, _hoisted_14, 8, _hoisted_12),
|
|
1372
1428
|
createElementVNode("div", {
|
|
1373
1429
|
class: "bottom",
|
|
1374
1430
|
onClick: ($event) => _ctx.handleBottom(index)
|
|
1375
|
-
},
|
|
1376
|
-
createElementVNode("i", { class: "iconfontui icon-xiayi" }, null, -1)
|
|
1377
|
-
]), 8, _hoisted_10)
|
|
1431
|
+
}, _hoisted_17, 8, _hoisted_15)
|
|
1378
1432
|
])
|
|
1379
1433
|
]);
|
|
1380
1434
|
}), 128))
|
|
@@ -1391,13 +1445,12 @@ const __vite_glob_0_1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePro
|
|
|
1391
1445
|
/* unplugin-vue-components disabled */const Loading_vue_vue_type_style_index_0_scoped_true_lang$1 = '';
|
|
1392
1446
|
|
|
1393
1447
|
const _sfc_main$p = {};
|
|
1394
|
-
|
|
1395
|
-
const _hoisted_1$n = { class: "loading" };
|
|
1448
|
+
const _hoisted_1$p = { class: "loading" };
|
|
1396
1449
|
|
|
1397
1450
|
function _sfc_render$p(_ctx, _cache) {
|
|
1398
1451
|
const _directive_loading = ElLoadingDirective;
|
|
1399
1452
|
|
|
1400
|
-
return withDirectives((openBlock(), createElementBlock("div", _hoisted_1$
|
|
1453
|
+
return withDirectives((openBlock(), createElementBlock("div", _hoisted_1$p, null, 512)), [
|
|
1401
1454
|
[_directive_loading, true]
|
|
1402
1455
|
])
|
|
1403
1456
|
}
|
|
@@ -1439,10 +1492,12 @@ const _sfc_main$o = defineComponent({
|
|
|
1439
1492
|
};
|
|
1440
1493
|
}
|
|
1441
1494
|
});
|
|
1442
|
-
const _hoisted_1$
|
|
1495
|
+
const _hoisted_1$o = {
|
|
1443
1496
|
key: 0,
|
|
1444
1497
|
class: "item_require"
|
|
1445
1498
|
};
|
|
1499
|
+
const _hoisted_2$i = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
1500
|
+
const _hoisted_3$5 = /* @__PURE__ */ createTextVNode(" \u65B0\u5EFA\u52A8\u4F5C+ ");
|
|
1446
1501
|
function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1447
1502
|
const _component_el_tooltip = ElTooltip;
|
|
1448
1503
|
const _component_el_option = ElOption;
|
|
@@ -1467,7 +1522,7 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1467
1522
|
style: normalizeStyle({ width: _ctx.labelWidth + "px" })
|
|
1468
1523
|
}, [
|
|
1469
1524
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label) + toDisplayString(_ctx.suffix), 1),
|
|
1470
|
-
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_1$
|
|
1525
|
+
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_1$o, "*")) : createCommentVNode("", true),
|
|
1471
1526
|
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
1472
1527
|
key: 1,
|
|
1473
1528
|
class: "item",
|
|
@@ -1475,11 +1530,10 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1475
1530
|
content: _ctx.item.data.tip,
|
|
1476
1531
|
placement: "top"
|
|
1477
1532
|
}, {
|
|
1478
|
-
default: withCtx(() =>
|
|
1479
|
-
|
|
1480
|
-
])
|
|
1481
|
-
_: 1
|
|
1482
|
-
__: [0]
|
|
1533
|
+
default: withCtx(() => [
|
|
1534
|
+
_hoisted_2$i
|
|
1535
|
+
]),
|
|
1536
|
+
_: 1
|
|
1483
1537
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
1484
1538
|
], 6),
|
|
1485
1539
|
createElementVNode("div", {
|
|
@@ -1599,11 +1653,10 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1599
1653
|
style: { "width": "100%" },
|
|
1600
1654
|
size: _ctx.size
|
|
1601
1655
|
}, {
|
|
1602
|
-
default: withCtx(() =>
|
|
1603
|
-
|
|
1604
|
-
])
|
|
1605
|
-
_: 1
|
|
1606
|
-
__: [1]
|
|
1656
|
+
default: withCtx(() => [
|
|
1657
|
+
_hoisted_3$5
|
|
1658
|
+
]),
|
|
1659
|
+
_: 1
|
|
1607
1660
|
}, 8, ["size"])
|
|
1608
1661
|
]),
|
|
1609
1662
|
_: 1
|
|
@@ -1649,6 +1702,7 @@ const _sfc_main$n = defineComponent({
|
|
|
1649
1702
|
};
|
|
1650
1703
|
}
|
|
1651
1704
|
});
|
|
1705
|
+
const _hoisted_1$n = /* @__PURE__ */ createTextVNode("\u6DFB\u52A0");
|
|
1652
1706
|
function _sfc_render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1653
1707
|
const _component_el_input_number = ElInputNumber;
|
|
1654
1708
|
const _component_Delete = resolveComponent("Delete");
|
|
@@ -1679,13 +1733,13 @@ function _sfc_render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1679
1733
|
modelValue: items.span,
|
|
1680
1734
|
"onUpdate:modelValue": ($event) => items.span = $event,
|
|
1681
1735
|
min: 0,
|
|
1682
|
-
size: "
|
|
1736
|
+
size: "default",
|
|
1683
1737
|
"controls-position": "right"
|
|
1684
1738
|
}, null, 8, ["modelValue", "onUpdate:modelValue"]),
|
|
1685
1739
|
createVNode(_component_el_button, {
|
|
1686
1740
|
type: "danger",
|
|
1687
1741
|
circle: "",
|
|
1688
|
-
size: "
|
|
1742
|
+
size: "default",
|
|
1689
1743
|
onClick: ($event) => _ctx.onDelete(index),
|
|
1690
1744
|
style: { "margin-left": "5px" }
|
|
1691
1745
|
}, {
|
|
@@ -1706,13 +1760,12 @@ function _sfc_render$n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1706
1760
|
createVNode(_component_el_button, {
|
|
1707
1761
|
plain: "",
|
|
1708
1762
|
onClick: _ctx.onAdd,
|
|
1709
|
-
size: "
|
|
1763
|
+
size: "default"
|
|
1710
1764
|
}, {
|
|
1711
|
-
default: withCtx(() =>
|
|
1712
|
-
|
|
1713
|
-
])
|
|
1714
|
-
_: 1
|
|
1715
|
-
__: [0]
|
|
1765
|
+
default: withCtx(() => [
|
|
1766
|
+
_hoisted_1$n
|
|
1767
|
+
]),
|
|
1768
|
+
_: 1
|
|
1716
1769
|
}, 8, ["onClick"])
|
|
1717
1770
|
], 4)
|
|
1718
1771
|
], 2);
|
|
@@ -1747,6 +1800,9 @@ const _sfc_main$m = defineComponent({
|
|
|
1747
1800
|
};
|
|
1748
1801
|
}
|
|
1749
1802
|
});
|
|
1803
|
+
const _hoisted_1$m = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
1804
|
+
const _hoisted_2$h = /* @__PURE__ */ createElementVNode("i", { class: "iconfontui icon-bars handle" }, null, -1);
|
|
1805
|
+
const _hoisted_3$4 = /* @__PURE__ */ createTextVNode("\u6DFB\u52A0\u9762\u677F");
|
|
1750
1806
|
function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1751
1807
|
const _component_el_tooltip = ElTooltip;
|
|
1752
1808
|
const _component_el_col = ElCol;
|
|
@@ -1770,11 +1826,10 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1770
1826
|
content: "\u53EF\u62D6\u62FD\u8C03\u6574\u987A\u5E8F",
|
|
1771
1827
|
placement: "top"
|
|
1772
1828
|
}, {
|
|
1773
|
-
default: withCtx(() =>
|
|
1774
|
-
|
|
1775
|
-
])
|
|
1776
|
-
_: 1
|
|
1777
|
-
__: [0]
|
|
1829
|
+
default: withCtx(() => [
|
|
1830
|
+
_hoisted_1$m
|
|
1831
|
+
]),
|
|
1832
|
+
_: 1
|
|
1778
1833
|
})
|
|
1779
1834
|
], 6),
|
|
1780
1835
|
createElementVNode("div", {
|
|
@@ -1796,19 +1851,18 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1796
1851
|
createVNode(_component_el_row, { gutter: 10 }, {
|
|
1797
1852
|
default: withCtx(() => [
|
|
1798
1853
|
createVNode(_component_el_col, { span: 1.5 }, {
|
|
1799
|
-
default: withCtx(() =>
|
|
1800
|
-
|
|
1801
|
-
])
|
|
1802
|
-
_: 1
|
|
1803
|
-
|
|
1804
|
-
}),
|
|
1854
|
+
default: withCtx(() => [
|
|
1855
|
+
_hoisted_2$h
|
|
1856
|
+
]),
|
|
1857
|
+
_: 1
|
|
1858
|
+
}, 8, ["span"]),
|
|
1805
1859
|
createVNode(_component_el_col, {
|
|
1806
1860
|
class: "list-group-item",
|
|
1807
1861
|
span: 14
|
|
1808
1862
|
}, {
|
|
1809
1863
|
default: withCtx(() => [
|
|
1810
1864
|
createVNode(_component_el_input, {
|
|
1811
|
-
size: "
|
|
1865
|
+
size: "default",
|
|
1812
1866
|
modelValue: element.name,
|
|
1813
1867
|
"onUpdate:modelValue": ($event) => element.name = $event,
|
|
1814
1868
|
clearable: ""
|
|
@@ -1821,7 +1875,7 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1821
1875
|
createVNode(_component_el_button, {
|
|
1822
1876
|
type: "danger",
|
|
1823
1877
|
circle: "",
|
|
1824
|
-
size: "
|
|
1878
|
+
size: "default",
|
|
1825
1879
|
onClick: ($event) => _ctx.removeAt(index)
|
|
1826
1880
|
}, {
|
|
1827
1881
|
default: withCtx(() => [
|
|
@@ -1850,13 +1904,12 @@ function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1850
1904
|
type: "primary",
|
|
1851
1905
|
text: "",
|
|
1852
1906
|
onClick: _ctx.add,
|
|
1853
|
-
size: "
|
|
1907
|
+
size: "default"
|
|
1854
1908
|
}, {
|
|
1855
|
-
default: withCtx(() =>
|
|
1856
|
-
|
|
1857
|
-
])
|
|
1858
|
-
_: 1
|
|
1859
|
-
__: [2]
|
|
1909
|
+
default: withCtx(() => [
|
|
1910
|
+
_hoisted_3$4
|
|
1911
|
+
]),
|
|
1912
|
+
_: 1
|
|
1860
1913
|
}, 8, ["onClick"])
|
|
1861
1914
|
]),
|
|
1862
1915
|
_: 1
|
|
@@ -1901,11 +1954,12 @@ const _sfc_main$l = defineComponent({
|
|
|
1901
1954
|
}
|
|
1902
1955
|
});
|
|
1903
1956
|
const _hoisted_1$l = { class: "label" };
|
|
1904
|
-
const _hoisted_2$
|
|
1957
|
+
const _hoisted_2$g = {
|
|
1905
1958
|
key: 0,
|
|
1906
1959
|
class: "item_require"
|
|
1907
1960
|
};
|
|
1908
|
-
const _hoisted_3$
|
|
1961
|
+
const _hoisted_3$3 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
1962
|
+
const _hoisted_4$2 = { class: "control" };
|
|
1909
1963
|
function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1910
1964
|
const _component_el_tooltip = ElTooltip;
|
|
1911
1965
|
const _component_el_radio_button = ElRadioButton;
|
|
@@ -1915,7 +1969,7 @@ function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1915
1969
|
}, [
|
|
1916
1970
|
createElementVNode("div", _hoisted_1$l, [
|
|
1917
1971
|
createElementVNode("label", null, toDisplayString(_ctx.item.data.label), 1),
|
|
1918
|
-
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_2$
|
|
1972
|
+
_ctx.item.data.required ? (openBlock(), createElementBlock("span", _hoisted_2$g, "*")) : createCommentVNode("", true),
|
|
1919
1973
|
_ctx.item.data.tip ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
1920
1974
|
key: 1,
|
|
1921
1975
|
class: "item",
|
|
@@ -1923,14 +1977,13 @@ function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1923
1977
|
content: _ctx.item.data.tip,
|
|
1924
1978
|
placement: "top"
|
|
1925
1979
|
}, {
|
|
1926
|
-
default: withCtx(() =>
|
|
1927
|
-
|
|
1928
|
-
])
|
|
1929
|
-
_: 1
|
|
1930
|
-
__: [1]
|
|
1980
|
+
default: withCtx(() => [
|
|
1981
|
+
_hoisted_3$3
|
|
1982
|
+
]),
|
|
1983
|
+
_: 1
|
|
1931
1984
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
1932
1985
|
]),
|
|
1933
|
-
createElementVNode("div",
|
|
1986
|
+
createElementVNode("div", _hoisted_4$2, [
|
|
1934
1987
|
createVNode(_component_el_radio_group, {
|
|
1935
1988
|
modelValue: _ctx.data[_ctx.item.data.fieldName],
|
|
1936
1989
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.data[_ctx.item.data.fieldName] = $event),
|
|
@@ -1978,6 +2031,7 @@ const _hoisted_1$k = {
|
|
|
1978
2031
|
key: 0,
|
|
1979
2032
|
class: "item_require"
|
|
1980
2033
|
};
|
|
2034
|
+
const _hoisted_2$f = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
1981
2035
|
function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1982
2036
|
const _component_el_tooltip = ElTooltip;
|
|
1983
2037
|
const _component_el_checkbox = ElCheckbox;
|
|
@@ -1998,11 +2052,10 @@ function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1998
2052
|
content: _ctx.item.data.tip,
|
|
1999
2053
|
placement: "top"
|
|
2000
2054
|
}, {
|
|
2001
|
-
default: withCtx(() =>
|
|
2002
|
-
|
|
2003
|
-
])
|
|
2004
|
-
_: 1
|
|
2005
|
-
__: [2]
|
|
2055
|
+
default: withCtx(() => [
|
|
2056
|
+
_hoisted_2$f
|
|
2057
|
+
]),
|
|
2058
|
+
_: 1
|
|
2006
2059
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2007
2060
|
], 6),
|
|
2008
2061
|
createElementVNode("div", {
|
|
@@ -2077,12 +2130,14 @@ const _sfc_main$j = defineComponent({
|
|
|
2077
2130
|
useWatch(props);
|
|
2078
2131
|
}
|
|
2079
2132
|
});
|
|
2133
|
+
const _withScopeId = (n) => (pushScopeId("data-v-4ce4907e"), n = n(), popScopeId(), n);
|
|
2080
2134
|
const _hoisted_1$j = {
|
|
2081
2135
|
key: 0,
|
|
2082
2136
|
class: "item_require"
|
|
2083
2137
|
};
|
|
2084
|
-
const _hoisted_2$
|
|
2085
|
-
const _hoisted_3 = { key:
|
|
2138
|
+
const _hoisted_2$e = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1));
|
|
2139
|
+
const _hoisted_3$2 = { key: 0 };
|
|
2140
|
+
const _hoisted_4$1 = { key: 1 };
|
|
2086
2141
|
function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2087
2142
|
const _component_el_tooltip = ElTooltip;
|
|
2088
2143
|
const _component_el_input = ElInput;
|
|
@@ -2103,23 +2158,22 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2103
2158
|
content: _ctx.item.data.tip,
|
|
2104
2159
|
placement: "top"
|
|
2105
2160
|
}, {
|
|
2106
|
-
default: withCtx(() =>
|
|
2107
|
-
|
|
2108
|
-
])
|
|
2109
|
-
_: 1
|
|
2110
|
-
__: [4]
|
|
2161
|
+
default: withCtx(() => [
|
|
2162
|
+
_hoisted_2$e
|
|
2163
|
+
]),
|
|
2164
|
+
_: 1
|
|
2111
2165
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2112
2166
|
], 6),
|
|
2113
2167
|
createElementVNode("div", {
|
|
2114
2168
|
class: "control",
|
|
2115
2169
|
style: normalizeStyle({ marginLeft: _ctx.labelalign != "top" ? _ctx.labelWidth + "px" : "" })
|
|
2116
2170
|
}, [
|
|
2117
|
-
_ctx.drag ? (openBlock(), createElementBlock("div",
|
|
2171
|
+
_ctx.drag ? (openBlock(), createElementBlock("div", _hoisted_3$2, [
|
|
2118
2172
|
createVNode(_component_el_input, {
|
|
2119
2173
|
modelValue: _ctx.item.data.default,
|
|
2120
2174
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.item.data.default = $event),
|
|
2121
2175
|
placeholder: _ctx.item.data.placeholder,
|
|
2122
|
-
size: "
|
|
2176
|
+
size: "default",
|
|
2123
2177
|
style: { "width": "150px" }
|
|
2124
2178
|
}, null, 8, ["modelValue", "placeholder"]),
|
|
2125
2179
|
createVNode(_component_el_color_picker, {
|
|
@@ -2129,12 +2183,12 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2129
2183
|
size: _ctx.size
|
|
2130
2184
|
}, null, 8, ["modelValue", "size"])
|
|
2131
2185
|
])) : createCommentVNode("", true),
|
|
2132
|
-
!_ctx.drag ? (openBlock(), createElementBlock("div",
|
|
2186
|
+
!_ctx.drag ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
|
|
2133
2187
|
createVNode(_component_el_input, {
|
|
2134
2188
|
modelValue: _ctx.data[_ctx.item.data.fieldName],
|
|
2135
2189
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => _ctx.data[_ctx.item.data.fieldName] = $event),
|
|
2136
2190
|
placeholder: _ctx.item.data.placeholder,
|
|
2137
|
-
size: "
|
|
2191
|
+
size: "default",
|
|
2138
2192
|
style: { "width": "150px" }
|
|
2139
2193
|
}, null, 8, ["modelValue", "placeholder"]),
|
|
2140
2194
|
createVNode(_component_el_color_picker, {
|
|
@@ -2147,7 +2201,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2147
2201
|
], 4)
|
|
2148
2202
|
], 2);
|
|
2149
2203
|
}
|
|
2150
|
-
const index$d = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$j], ["__scopeId", "data-v-
|
|
2204
|
+
const index$d = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$j], ["__scopeId", "data-v-4ce4907e"]]);
|
|
2151
2205
|
|
|
2152
2206
|
const __vite_glob_0_8 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
2153
2207
|
__proto__: null,
|
|
@@ -2177,6 +2231,7 @@ const _hoisted_1$i = {
|
|
|
2177
2231
|
key: 0,
|
|
2178
2232
|
class: "item_require"
|
|
2179
2233
|
};
|
|
2234
|
+
const _hoisted_2$d = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
2180
2235
|
function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2181
2236
|
const _component_el_tooltip = ElTooltip;
|
|
2182
2237
|
const _component_el_date_picker = ElDatePicker;
|
|
@@ -2196,11 +2251,10 @@ function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2196
2251
|
content: _ctx.item.data.tip,
|
|
2197
2252
|
placement: "top"
|
|
2198
2253
|
}, {
|
|
2199
|
-
default: withCtx(() =>
|
|
2200
|
-
|
|
2201
|
-
])
|
|
2202
|
-
_: 1
|
|
2203
|
-
__: [2]
|
|
2254
|
+
default: withCtx(() => [
|
|
2255
|
+
_hoisted_2$d
|
|
2256
|
+
]),
|
|
2257
|
+
_: 1
|
|
2204
2258
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2205
2259
|
], 6),
|
|
2206
2260
|
createElementVNode("div", {
|
|
@@ -2256,6 +2310,7 @@ const _hoisted_1$h = {
|
|
|
2256
2310
|
key: 0,
|
|
2257
2311
|
class: "item_require"
|
|
2258
2312
|
};
|
|
2313
|
+
const _hoisted_2$c = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
2259
2314
|
function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2260
2315
|
const _component_el_tooltip = ElTooltip;
|
|
2261
2316
|
const _component_el_date_picker = ElDatePicker;
|
|
@@ -2275,11 +2330,10 @@ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2275
2330
|
content: _ctx.item.data.tip,
|
|
2276
2331
|
placement: "top"
|
|
2277
2332
|
}, {
|
|
2278
|
-
default: withCtx(() =>
|
|
2279
|
-
|
|
2280
|
-
])
|
|
2281
|
-
_: 1
|
|
2282
|
-
__: [2]
|
|
2333
|
+
default: withCtx(() => [
|
|
2334
|
+
_hoisted_2$c
|
|
2335
|
+
]),
|
|
2336
|
+
_: 1
|
|
2283
2337
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2284
2338
|
], 6),
|
|
2285
2339
|
createElementVNode("div", {
|
|
@@ -2344,6 +2398,7 @@ const _hoisted_1$g = {
|
|
|
2344
2398
|
key: 0,
|
|
2345
2399
|
class: "item_require"
|
|
2346
2400
|
};
|
|
2401
|
+
const _hoisted_2$b = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
2347
2402
|
function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2348
2403
|
const _component_el_tooltip = ElTooltip;
|
|
2349
2404
|
const _component_el_input_number = ElInputNumber;
|
|
@@ -2363,11 +2418,10 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2363
2418
|
content: _ctx.item.data.tip,
|
|
2364
2419
|
placement: "top"
|
|
2365
2420
|
}, {
|
|
2366
|
-
default: withCtx(() =>
|
|
2367
|
-
|
|
2368
|
-
])
|
|
2369
|
-
_: 1
|
|
2370
|
-
__: [4]
|
|
2421
|
+
default: withCtx(() => [
|
|
2422
|
+
_hoisted_2$b
|
|
2423
|
+
]),
|
|
2424
|
+
_: 1
|
|
2371
2425
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2372
2426
|
], 6),
|
|
2373
2427
|
createElementVNode("div", {
|
|
@@ -2422,6 +2476,7 @@ const _hoisted_1$f = {
|
|
|
2422
2476
|
key: 0,
|
|
2423
2477
|
class: "item_require"
|
|
2424
2478
|
};
|
|
2479
|
+
const _hoisted_2$a = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
2425
2480
|
function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2426
2481
|
const _component_el_tooltip = ElTooltip;
|
|
2427
2482
|
const _component_el_radio = ElRadio;
|
|
@@ -2442,11 +2497,10 @@ function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2442
2497
|
content: _ctx.item.data.tip,
|
|
2443
2498
|
placement: "top"
|
|
2444
2499
|
}, {
|
|
2445
|
-
default: withCtx(() =>
|
|
2446
|
-
|
|
2447
|
-
])
|
|
2448
|
-
_: 1
|
|
2449
|
-
__: [2]
|
|
2500
|
+
default: withCtx(() => [
|
|
2501
|
+
_hoisted_2$a
|
|
2502
|
+
]),
|
|
2503
|
+
_: 1
|
|
2450
2504
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2451
2505
|
], 6),
|
|
2452
2506
|
createElementVNode("div", {
|
|
@@ -2958,6 +3012,7 @@ const _hoisted_1$e = {
|
|
|
2958
3012
|
key: 0,
|
|
2959
3013
|
class: "item_require"
|
|
2960
3014
|
};
|
|
3015
|
+
const _hoisted_2$9 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
2961
3016
|
function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
2962
3017
|
const _component_el_tooltip = ElTooltip;
|
|
2963
3018
|
const _component_el_option = ElOption;
|
|
@@ -2978,11 +3033,10 @@ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2978
3033
|
content: _ctx.item.data.tip,
|
|
2979
3034
|
placement: "top"
|
|
2980
3035
|
}, {
|
|
2981
|
-
default: withCtx(() =>
|
|
2982
|
-
|
|
2983
|
-
])
|
|
2984
|
-
_: 1
|
|
2985
|
-
__: [4]
|
|
3036
|
+
default: withCtx(() => [
|
|
3037
|
+
_hoisted_2$9
|
|
3038
|
+
]),
|
|
3039
|
+
_: 1
|
|
2986
3040
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
2987
3041
|
], 6),
|
|
2988
3042
|
createElementVNode("div", {
|
|
@@ -3067,6 +3121,7 @@ const _hoisted_1$d = {
|
|
|
3067
3121
|
key: 0,
|
|
3068
3122
|
class: "item_require"
|
|
3069
3123
|
};
|
|
3124
|
+
const _hoisted_2$8 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3070
3125
|
function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3071
3126
|
const _component_el_tooltip = ElTooltip;
|
|
3072
3127
|
const _component_el_option = ElOption;
|
|
@@ -3087,11 +3142,10 @@ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3087
3142
|
content: _ctx.item.data.tip,
|
|
3088
3143
|
placement: "top"
|
|
3089
3144
|
}, {
|
|
3090
|
-
default: withCtx(() =>
|
|
3091
|
-
|
|
3092
|
-
])
|
|
3093
|
-
_: 1
|
|
3094
|
-
__: [4]
|
|
3145
|
+
default: withCtx(() => [
|
|
3146
|
+
_hoisted_2$8
|
|
3147
|
+
]),
|
|
3148
|
+
_: 1
|
|
3095
3149
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3096
3150
|
], 6),
|
|
3097
3151
|
createElementVNode("div", {
|
|
@@ -3177,6 +3231,11 @@ const _hoisted_1$c = {
|
|
|
3177
3231
|
key: 0,
|
|
3178
3232
|
class: "item_require"
|
|
3179
3233
|
};
|
|
3234
|
+
const _hoisted_2$7 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3235
|
+
const _hoisted_3$1 = /* @__PURE__ */ createTextVNode("\u5DF2\u8BBE\u7F6E");
|
|
3236
|
+
const _hoisted_4 = /* @__PURE__ */ createTextVNode("\u672A\u8BBE\u7F6E");
|
|
3237
|
+
const _hoisted_5 = /* @__PURE__ */ createTextVNode("\u666E\u901A\u8BBE\u7F6E");
|
|
3238
|
+
const _hoisted_6 = /* @__PURE__ */ createTextVNode("\u9AD8\u7EA7\u8BBE\u7F6E");
|
|
3180
3239
|
function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3181
3240
|
const _component_el_tooltip = ElTooltip;
|
|
3182
3241
|
const _component_el_button = ElButton;
|
|
@@ -3198,11 +3257,10 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3198
3257
|
content: _ctx.item.data.tip,
|
|
3199
3258
|
placement: "top"
|
|
3200
3259
|
}, {
|
|
3201
|
-
default: withCtx(() =>
|
|
3202
|
-
|
|
3203
|
-
])
|
|
3204
|
-
_: 1
|
|
3205
|
-
__: [0]
|
|
3260
|
+
default: withCtx(() => [
|
|
3261
|
+
_hoisted_2$7
|
|
3262
|
+
]),
|
|
3263
|
+
_: 1
|
|
3206
3264
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3207
3265
|
], 6),
|
|
3208
3266
|
createElementVNode("div", {
|
|
@@ -3215,22 +3273,20 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3215
3273
|
type: "primary",
|
|
3216
3274
|
size: _ctx.size
|
|
3217
3275
|
}, {
|
|
3218
|
-
default: withCtx(() =>
|
|
3219
|
-
|
|
3220
|
-
])
|
|
3221
|
-
_: 1
|
|
3222
|
-
__: [1]
|
|
3276
|
+
default: withCtx(() => [
|
|
3277
|
+
_hoisted_3$1
|
|
3278
|
+
]),
|
|
3279
|
+
_: 1
|
|
3223
3280
|
}, 8, ["size"])) : (openBlock(), createBlock(_component_el_button, {
|
|
3224
3281
|
key: 1,
|
|
3225
3282
|
text: "",
|
|
3226
3283
|
type: "primary",
|
|
3227
3284
|
size: _ctx.size
|
|
3228
3285
|
}, {
|
|
3229
|
-
default: withCtx(() =>
|
|
3230
|
-
|
|
3231
|
-
])
|
|
3232
|
-
_: 1
|
|
3233
|
-
__: [2]
|
|
3286
|
+
default: withCtx(() => [
|
|
3287
|
+
_hoisted_4
|
|
3288
|
+
]),
|
|
3289
|
+
_: 1
|
|
3234
3290
|
}, 8, ["size"])),
|
|
3235
3291
|
createElementVNode("div", null, [
|
|
3236
3292
|
createVNode(_component_el_button, {
|
|
@@ -3238,22 +3294,20 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3238
3294
|
size: _ctx.size,
|
|
3239
3295
|
onClick: _ctx.onConditionSet
|
|
3240
3296
|
}, {
|
|
3241
|
-
default: withCtx(() =>
|
|
3242
|
-
|
|
3243
|
-
])
|
|
3244
|
-
_: 1
|
|
3245
|
-
__: [3]
|
|
3297
|
+
default: withCtx(() => [
|
|
3298
|
+
_hoisted_5
|
|
3299
|
+
]),
|
|
3300
|
+
_: 1
|
|
3246
3301
|
}, 8, ["size", "onClick"]),
|
|
3247
3302
|
createVNode(_component_el_button, {
|
|
3248
3303
|
type: "primary",
|
|
3249
3304
|
size: _ctx.size,
|
|
3250
3305
|
onClick: _ctx.onHighConditionSet
|
|
3251
3306
|
}, {
|
|
3252
|
-
default: withCtx(() =>
|
|
3253
|
-
|
|
3254
|
-
])
|
|
3255
|
-
_: 1
|
|
3256
|
-
__: [4]
|
|
3307
|
+
default: withCtx(() => [
|
|
3308
|
+
_hoisted_6
|
|
3309
|
+
]),
|
|
3310
|
+
_: 1
|
|
3257
3311
|
}, 8, ["size", "onClick"]),
|
|
3258
3312
|
createVNode(_component_ConditionSelect, {
|
|
3259
3313
|
ref: "ConditionSelect",
|
|
@@ -3300,6 +3354,7 @@ const _hoisted_1$b = {
|
|
|
3300
3354
|
key: 0,
|
|
3301
3355
|
class: "item_require"
|
|
3302
3356
|
};
|
|
3357
|
+
const _hoisted_2$6 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3303
3358
|
function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3304
3359
|
const _component_el_tooltip = ElTooltip;
|
|
3305
3360
|
const _component_el_slider = ElSlider;
|
|
@@ -3319,11 +3374,10 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3319
3374
|
content: _ctx.item.data.tip,
|
|
3320
3375
|
placement: "top"
|
|
3321
3376
|
}, {
|
|
3322
|
-
default: withCtx(() =>
|
|
3323
|
-
|
|
3324
|
-
])
|
|
3325
|
-
_: 1
|
|
3326
|
-
__: [2]
|
|
3377
|
+
default: withCtx(() => [
|
|
3378
|
+
_hoisted_2$6
|
|
3379
|
+
]),
|
|
3380
|
+
_: 1
|
|
3327
3381
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3328
3382
|
], 6),
|
|
3329
3383
|
createElementVNode("div", {
|
|
@@ -3377,6 +3431,7 @@ const _hoisted_1$a = {
|
|
|
3377
3431
|
key: 0,
|
|
3378
3432
|
class: "item_require"
|
|
3379
3433
|
};
|
|
3434
|
+
const _hoisted_2$5 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3380
3435
|
function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3381
3436
|
const _component_el_tooltip = ElTooltip;
|
|
3382
3437
|
const _component_el_switch = ElSwitch;
|
|
@@ -3400,11 +3455,10 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3400
3455
|
content: _ctx.item.data.tip,
|
|
3401
3456
|
placement: "top"
|
|
3402
3457
|
}, {
|
|
3403
|
-
default: withCtx(() =>
|
|
3404
|
-
|
|
3405
|
-
])
|
|
3406
|
-
_: 1
|
|
3407
|
-
__: [2]
|
|
3458
|
+
default: withCtx(() => [
|
|
3459
|
+
_hoisted_2$5
|
|
3460
|
+
]),
|
|
3461
|
+
_: 1
|
|
3408
3462
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3409
3463
|
], 6),
|
|
3410
3464
|
createElementVNode("div", {
|
|
@@ -3465,6 +3519,7 @@ const _hoisted_1$9 = {
|
|
|
3465
3519
|
key: 0,
|
|
3466
3520
|
class: "item_require"
|
|
3467
3521
|
};
|
|
3522
|
+
const _hoisted_2$4 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3468
3523
|
function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3469
3524
|
const _component_el_tooltip = ElTooltip;
|
|
3470
3525
|
const _component_el_input = ElInput;
|
|
@@ -3484,11 +3539,10 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3484
3539
|
content: _ctx.item.data.tip,
|
|
3485
3540
|
placement: "top"
|
|
3486
3541
|
}, {
|
|
3487
|
-
default: withCtx(() =>
|
|
3488
|
-
|
|
3489
|
-
])
|
|
3490
|
-
_: 1
|
|
3491
|
-
__: [4]
|
|
3542
|
+
default: withCtx(() => [
|
|
3543
|
+
_hoisted_2$4
|
|
3544
|
+
]),
|
|
3545
|
+
_: 1
|
|
3492
3546
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3493
3547
|
], 6),
|
|
3494
3548
|
createElementVNode("div", {
|
|
@@ -3556,6 +3610,7 @@ const _hoisted_1$8 = {
|
|
|
3556
3610
|
key: 0,
|
|
3557
3611
|
class: "item_require"
|
|
3558
3612
|
};
|
|
3613
|
+
const _hoisted_2$3 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3559
3614
|
function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3560
3615
|
const _component_el_tooltip = ElTooltip;
|
|
3561
3616
|
const _component_el_input = ElInput;
|
|
@@ -3575,11 +3630,10 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3575
3630
|
content: _ctx.item.data.tip,
|
|
3576
3631
|
placement: "top"
|
|
3577
3632
|
}, {
|
|
3578
|
-
default: withCtx(() =>
|
|
3579
|
-
|
|
3580
|
-
])
|
|
3581
|
-
_: 1
|
|
3582
|
-
__: [4]
|
|
3633
|
+
default: withCtx(() => [
|
|
3634
|
+
_hoisted_2$3
|
|
3635
|
+
]),
|
|
3636
|
+
_: 1
|
|
3583
3637
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3584
3638
|
], 6),
|
|
3585
3639
|
createElementVNode("div", {
|
|
@@ -3634,6 +3688,7 @@ const _hoisted_1$7 = {
|
|
|
3634
3688
|
key: 0,
|
|
3635
3689
|
class: "item_require"
|
|
3636
3690
|
};
|
|
3691
|
+
const _hoisted_2$2 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3637
3692
|
function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3638
3693
|
const _component_el_tooltip = ElTooltip;
|
|
3639
3694
|
const _component_el_time_select = ElTimeSelect;
|
|
@@ -3653,11 +3708,10 @@ function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3653
3708
|
content: _ctx.item.data.tip,
|
|
3654
3709
|
placement: "top"
|
|
3655
3710
|
}, {
|
|
3656
|
-
default: withCtx(() =>
|
|
3657
|
-
|
|
3658
|
-
])
|
|
3659
|
-
_: 1
|
|
3660
|
-
__: [2]
|
|
3711
|
+
default: withCtx(() => [
|
|
3712
|
+
_hoisted_2$2
|
|
3713
|
+
]),
|
|
3714
|
+
_: 1
|
|
3661
3715
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3662
3716
|
], 6),
|
|
3663
3717
|
createElementVNode("div", {
|
|
@@ -3775,7 +3829,8 @@ const _hoisted_1$5 = {
|
|
|
3775
3829
|
key: 0,
|
|
3776
3830
|
class: "label"
|
|
3777
3831
|
};
|
|
3778
|
-
const _hoisted_2$1 = { class: "
|
|
3832
|
+
const _hoisted_2$1 = /* @__PURE__ */ createElementVNode("span", { class: "tip iconfontui icon-tishi" }, null, -1);
|
|
3833
|
+
const _hoisted_3 = { class: "control" };
|
|
3779
3834
|
function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
3780
3835
|
const _component_el_tooltip = ElTooltip;
|
|
3781
3836
|
const _component_el_alert = ElAlert;
|
|
@@ -3791,14 +3846,13 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3791
3846
|
content: _ctx.item.data.tip,
|
|
3792
3847
|
placement: "top"
|
|
3793
3848
|
}, {
|
|
3794
|
-
default: withCtx(() =>
|
|
3795
|
-
|
|
3796
|
-
])
|
|
3797
|
-
_: 1
|
|
3798
|
-
__: [1]
|
|
3849
|
+
default: withCtx(() => [
|
|
3850
|
+
_hoisted_2$1
|
|
3851
|
+
]),
|
|
3852
|
+
_: 1
|
|
3799
3853
|
}, 8, ["content"])) : createCommentVNode("", true)
|
|
3800
3854
|
])) : createCommentVNode("", true),
|
|
3801
|
-
createElementVNode("div",
|
|
3855
|
+
createElementVNode("div", _hoisted_3, [
|
|
3802
3856
|
createVNode(_component_el_alert, {
|
|
3803
3857
|
title: _ctx.item.data.title,
|
|
3804
3858
|
type: _ctx.item.data.infotype,
|
|
@@ -4987,7 +5041,6 @@ const _ = new Flex();
|
|
|
4987
5041
|
/* unplugin-vue-components disabled */const Loading_vue_vue_type_style_index_0_scoped_true_lang = '';
|
|
4988
5042
|
|
|
4989
5043
|
const _sfc_main = {};
|
|
4990
|
-
|
|
4991
5044
|
const _hoisted_1 = { class: "loading" };
|
|
4992
5045
|
|
|
4993
5046
|
function _sfc_render(_ctx, _cache) {
|
|
@@ -5008,7 +5061,7 @@ Object.keys(files).forEach((fileName) => {
|
|
|
5008
5061
|
}
|
|
5009
5062
|
});
|
|
5010
5063
|
const RichText = defineAsyncComponent({
|
|
5011
|
-
loader: () => import('./index-
|
|
5064
|
+
loader: () => import('./index-6414efee.mjs'),
|
|
5012
5065
|
loadingComponent: Loading
|
|
5013
5066
|
});
|
|
5014
5067
|
RichText.ControlType = "RichText";
|
|
@@ -5017,7 +5070,7 @@ RichText.icon = "icon-textEdit";
|
|
|
5017
5070
|
RichText.formConfig = getFormConfig("RichText");
|
|
5018
5071
|
utilFuns[RichText.ControlType] = RichText;
|
|
5019
5072
|
const jsonEditor = defineAsyncComponent({
|
|
5020
|
-
loader: () => import('./index-
|
|
5073
|
+
loader: () => import('./index-07a56f42.mjs'),
|
|
5021
5074
|
loadingComponent: Loading
|
|
5022
5075
|
});
|
|
5023
5076
|
jsonEditor.ControlType = "JsonEditor";
|
|
@@ -5027,14 +5080,14 @@ jsonEditor.formConfig = getFormConfig("JsonEditor", [{ fieldName: "default", com
|
|
|
5027
5080
|
jsonEditor.rule = _.getJsonValidate();
|
|
5028
5081
|
utilFuns[jsonEditor.ControlType] = jsonEditor;
|
|
5029
5082
|
const formAction = defineAsyncComponent({
|
|
5030
|
-
loader: () => import('./formAction-
|
|
5083
|
+
loader: () => import('./formAction-f22cc5f4.mjs'),
|
|
5031
5084
|
loadingComponent: Loading
|
|
5032
5085
|
});
|
|
5033
5086
|
formAction.ControlType = "FormAction";
|
|
5034
5087
|
formAction.isHide = true;
|
|
5035
5088
|
utilFuns[formAction.ControlType] = formAction;
|
|
5036
5089
|
const Rule = defineAsyncComponent({
|
|
5037
|
-
loader: () => import('./index-
|
|
5090
|
+
loader: () => import('./index-6e5bd506.mjs'),
|
|
5038
5091
|
loadingComponent: Loading
|
|
5039
5092
|
});
|
|
5040
5093
|
Rule.ControlType = "Rule";
|
|
@@ -5043,7 +5096,7 @@ utilFuns[Rule.ControlType] = Rule;
|
|
|
5043
5096
|
const install = (app) => {
|
|
5044
5097
|
app.config.globalProperties.$formcomponents = utilFuns;
|
|
5045
5098
|
};
|
|
5046
|
-
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-
|
|
5099
|
+
const Dynamicform = defineAsyncComponent(() => import('./starfish-form-a993ec26.mjs'));
|
|
5047
5100
|
const main = {
|
|
5048
5101
|
install
|
|
5049
5102
|
};
|