star-horse-lowcode 2.7.46 → 2.7.47
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/README.md +3 -0
- package/dist/assets/index.css +1 -1
- package/dist/index.es.js +290 -296
- package/dist/types/index.d.ts +19 -26
- package/package.json +5 -5
package/dist/index.es.js
CHANGED
|
@@ -65921,8 +65921,8 @@ const _sfc_main$1Q = defineComponent({
|
|
|
65921
65921
|
};
|
|
65922
65922
|
}
|
|
65923
65923
|
});
|
|
65924
|
-
const _hoisted_1$
|
|
65925
|
-
const _hoisted_2$
|
|
65924
|
+
const _hoisted_1$Z = ["id"];
|
|
65925
|
+
const _hoisted_2$H = {
|
|
65926
65926
|
key: 0,
|
|
65927
65927
|
class: "m-message-icons"
|
|
65928
65928
|
};
|
|
@@ -65985,7 +65985,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
65985
65985
|
onMouseenter: _cache[2] || (_cache[2] = (...args) => _ctx.handleClearTimer && _ctx.handleClearTimer(...args)),
|
|
65986
65986
|
onMouseleave: _cache[3] || (_cache[3] = (...args) => _ctx.handleStartTimer && _ctx.handleStartTimer(...args))
|
|
65987
65987
|
}, [
|
|
65988
|
-
_ctx.iconURL || _ctx.type ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
65988
|
+
_ctx.iconURL || _ctx.type ? (openBlock(), createElementBlock("div", _hoisted_2$H, [
|
|
65989
65989
|
_ctx.iconURL ? (openBlock(), createElementBlock("img", {
|
|
65990
65990
|
key: 0,
|
|
65991
65991
|
src: _ctx.iconURL,
|
|
@@ -66031,7 +66031,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
66031
66031
|
}, _hoisted_12)) : createCommentVNode("", true)
|
|
66032
66032
|
])
|
|
66033
66033
|
], 34)
|
|
66034
|
-
], 14, _hoisted_1$
|
|
66034
|
+
], 14, _hoisted_1$Z)) : createCommentVNode("", true)
|
|
66035
66035
|
]),
|
|
66036
66036
|
_: 3
|
|
66037
66037
|
});
|
|
@@ -93044,6 +93044,56 @@ const batchModifyAction = (items, val, fieldName) => {
|
|
|
93044
93044
|
}
|
|
93045
93045
|
}
|
|
93046
93046
|
};
|
|
93047
|
+
const inputType = ["input", "textarea", "password", "number", "view-markdown", "json", "json-array"];
|
|
93048
|
+
const selectType = ["select", "tselect", "cascader", "autocomplete", "area", "cron", "transfer", "dialog-input", "page-select"];
|
|
93049
|
+
function fieldPlaceholder(item, itemType) {
|
|
93050
|
+
if (!item.preps) {
|
|
93051
|
+
item.preps = {};
|
|
93052
|
+
}
|
|
93053
|
+
if (item.preps["noPlaceholder"]) {
|
|
93054
|
+
delete item.preps["placeholder"];
|
|
93055
|
+
delete item.preps["startPlaceholder"];
|
|
93056
|
+
delete item.preps["endPlaceholder"];
|
|
93057
|
+
delete item.preps["minPlaceholder"];
|
|
93058
|
+
delete item.preps["maxPlaceholder"];
|
|
93059
|
+
return;
|
|
93060
|
+
}
|
|
93061
|
+
if (inputType.includes(itemType)) {
|
|
93062
|
+
item.preps["placeholder"] = item.preps["placeholder"]?.trim() || "请输入" + item.label;
|
|
93063
|
+
} else if (selectType.includes(itemType)) {
|
|
93064
|
+
item.preps["placeholder"] = item.preps["placeholder"]?.trim() || "请选择" + item.label;
|
|
93065
|
+
}
|
|
93066
|
+
if (itemType == "datetime") {
|
|
93067
|
+
if (item?.type?.includes("range")) {
|
|
93068
|
+
item.preps["startPlaceholder"] = item.preps["startPlaceholder"]?.trim() || "请选择开始日期";
|
|
93069
|
+
item.preps["endPlaceholder"] = item.preps["endPlaceholder"]?.trim() || "请选择结束日期";
|
|
93070
|
+
} else {
|
|
93071
|
+
item.preps["placeholder"] = item.preps["placeholder"]?.trim() || "请选择" + item.label;
|
|
93072
|
+
}
|
|
93073
|
+
} else if (itemType == "number-range") {
|
|
93074
|
+
item.preps["minPlaceholder"] = item.preps["minPlaceholder"]?.trim() || "请输入最小值";
|
|
93075
|
+
item.preps["maxPlaceholder"] = item.preps["maxPlaceholder"]?.trim() || "请输入最大值";
|
|
93076
|
+
}
|
|
93077
|
+
}
|
|
93078
|
+
function itemCheck(item) {
|
|
93079
|
+
if (item?.compType == "formItem") {
|
|
93080
|
+
item.label = item.label || item.preps?.label;
|
|
93081
|
+
item.fieldName = item.fieldName || item.preps?.fieldName;
|
|
93082
|
+
item.type = item.type || item.itemType;
|
|
93083
|
+
item.actionName = item.actionName || item.preps?.actionName;
|
|
93084
|
+
item.actions = item.actions || item.preps?.actions;
|
|
93085
|
+
fieldPlaceholder(item, item.type);
|
|
93086
|
+
if (typeof item.actions === "string") {
|
|
93087
|
+
try {
|
|
93088
|
+
item.actions = new Function(item.actions);
|
|
93089
|
+
} catch (e) {
|
|
93090
|
+
console.error("actions 字符串转函数失败:", e);
|
|
93091
|
+
item.actions = null;
|
|
93092
|
+
}
|
|
93093
|
+
}
|
|
93094
|
+
}
|
|
93095
|
+
return item?.itemType + (item?.compType === "container" ? "-container" : "-item");
|
|
93096
|
+
}
|
|
93047
93097
|
function createComponent(compInfo) {
|
|
93048
93098
|
const app = __starHorseHostApp__;
|
|
93049
93099
|
!app && console.log("app is null,please define __starHorseHostApp__");
|
|
@@ -93287,7 +93337,7 @@ function isPromise(obj) {
|
|
|
93287
93337
|
return !!obj && (typeof obj === "object" || typeof obj === "function") && typeof obj.then === "function" && typeof obj.catch === "function";
|
|
93288
93338
|
}
|
|
93289
93339
|
|
|
93290
|
-
const _hoisted_1$
|
|
93340
|
+
const _hoisted_1$Y = ["title"];
|
|
93291
93341
|
const _sfc_main$1P = /* @__PURE__ */ defineComponent({
|
|
93292
93342
|
__name: "StarHorseIcon",
|
|
93293
93343
|
props: {
|
|
@@ -93334,7 +93384,7 @@ const _sfc_main$1P = /* @__PURE__ */ defineComponent({
|
|
|
93334
93384
|
"aria-hidden": "false",
|
|
93335
93385
|
class: normalizeClass([svgClass.value, iconName.value]),
|
|
93336
93386
|
title: __props.title
|
|
93337
|
-
}, null, 10, _hoisted_1$
|
|
93387
|
+
}, null, 10, _hoisted_1$Y);
|
|
93338
93388
|
};
|
|
93339
93389
|
}
|
|
93340
93390
|
});
|
|
@@ -93479,21 +93529,11 @@ const _sfc_main$1O = /* @__PURE__ */ defineComponent({
|
|
|
93479
93529
|
}, {
|
|
93480
93530
|
default: withCtx(() => [
|
|
93481
93531
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.fieldList, (data, key) => {
|
|
93482
|
-
return openBlock(),
|
|
93483
|
-
key: unref(compKey)(data, key, false, "dyform")
|
|
93484
|
-
|
|
93485
|
-
|
|
93486
|
-
|
|
93487
|
-
field: data,
|
|
93488
|
-
formData: dataForm.value
|
|
93489
|
-
}, null, 8, ["field", "formData"])) : createCommentVNode("", true),
|
|
93490
|
-
data.compType === "formItem" ? (openBlock(), createBlock(resolveDynamicComponent(data.itemType + "-item"), {
|
|
93491
|
-
key: 1,
|
|
93492
|
-
id: data.id,
|
|
93493
|
-
field: data,
|
|
93494
|
-
formData: dataForm.value
|
|
93495
|
-
}, null, 8, ["id", "field", "formData"])) : createCommentVNode("", true)
|
|
93496
|
-
], 64);
|
|
93532
|
+
return openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
93533
|
+
key: unref(compKey)(data, key, false, "dyform"),
|
|
93534
|
+
field: data,
|
|
93535
|
+
formData: dataForm.value
|
|
93536
|
+
}, null, 8, ["field", "formData"]);
|
|
93497
93537
|
}), 128)),
|
|
93498
93538
|
__props.typeModel == "tab" ? (openBlock(), createBlock(_component_el_form_item, { key: 0 }, {
|
|
93499
93539
|
default: withCtx(() => [
|
|
@@ -93771,7 +93811,7 @@ function parseListData(item, val) {
|
|
|
93771
93811
|
return unref(item.preps?.values)?.find((temp) => temp.value == val)?.name || unref(item.preps?.data)?.find((temp) => temp.value == val)?.name || unref(item.optionList)?.find((temp) => temp.value == val)?.name || val;
|
|
93772
93812
|
}
|
|
93773
93813
|
|
|
93774
|
-
const _hoisted_1$
|
|
93814
|
+
const _hoisted_1$X = { style: { "font-size": "12px" } };
|
|
93775
93815
|
const _sfc_main$1N = /* @__PURE__ */ defineComponent({
|
|
93776
93816
|
__name: "help",
|
|
93777
93817
|
props: {
|
|
@@ -93795,7 +93835,7 @@ const _sfc_main$1N = /* @__PURE__ */ defineComponent({
|
|
|
93795
93835
|
})
|
|
93796
93836
|
]),
|
|
93797
93837
|
default: withCtx(() => [
|
|
93798
|
-
createElementVNode("div", _hoisted_1$
|
|
93838
|
+
createElementVNode("div", _hoisted_1$X, [
|
|
93799
93839
|
createElementVNode("pre", null, toDisplayString(__props.message) + "\n ", 1)
|
|
93800
93840
|
])
|
|
93801
93841
|
]),
|
|
@@ -93810,7 +93850,7 @@ const help = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
|
93810
93850
|
default: _sfc_main$1N
|
|
93811
93851
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
93812
93852
|
|
|
93813
|
-
const _hoisted_1$
|
|
93853
|
+
const _hoisted_1$W = {
|
|
93814
93854
|
key: 2,
|
|
93815
93855
|
style: { "width": "15px" }
|
|
93816
93856
|
};
|
|
@@ -93886,29 +93926,6 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
|
|
|
93886
93926
|
itemType.value = "datetime";
|
|
93887
93927
|
}
|
|
93888
93928
|
};
|
|
93889
|
-
const inputType = ["input", "textarea", "password", "number", "view-markdown", "json", "json-array"];
|
|
93890
|
-
const selectType = ["select", "tselect", "cascader", "autocomplete", "area", "cron", "transfer", "dialog-input", "page-select"];
|
|
93891
|
-
const fieldPlaceholder = () => {
|
|
93892
|
-
if (!props.item.preps) {
|
|
93893
|
-
props.item.preps = {};
|
|
93894
|
-
}
|
|
93895
|
-
if (inputType.includes(itemType.value)) {
|
|
93896
|
-
props.item.preps["placeholder"] = "请输入" + props.item.label;
|
|
93897
|
-
} else if (selectType.includes(itemType.value)) {
|
|
93898
|
-
props.item.preps["placeholder"] = "请选择" + props.item.label;
|
|
93899
|
-
}
|
|
93900
|
-
if (itemType.value == "datetime") {
|
|
93901
|
-
if (props.item?.type?.includes("range")) {
|
|
93902
|
-
props.item.preps["startPlaceholder"] = "请选择开始日期";
|
|
93903
|
-
props.item.preps["endPlaceholder"] = "请选择结束日期";
|
|
93904
|
-
} else {
|
|
93905
|
-
props.item.preps["placeholder"] = "请选择" + props.item.label;
|
|
93906
|
-
}
|
|
93907
|
-
} else if (itemType.value == "number-range") {
|
|
93908
|
-
props.item.preps["minPlaceholder"] = "请输入最小值";
|
|
93909
|
-
props.item.preps["maxPlaceholder"] = "请输入最大值";
|
|
93910
|
-
}
|
|
93911
|
-
};
|
|
93912
93929
|
const init = () => {
|
|
93913
93930
|
fieldType();
|
|
93914
93931
|
if (!props.item["id"]) {
|
|
@@ -93916,7 +93933,7 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
|
|
|
93916
93933
|
}
|
|
93917
93934
|
props.item["clearable"] = true;
|
|
93918
93935
|
props.item["readonly"] = props.item?.readonly || props.isView;
|
|
93919
|
-
fieldPlaceholder();
|
|
93936
|
+
fieldPlaceholder(props.item, itemType.value);
|
|
93920
93937
|
if (props.item.preps) {
|
|
93921
93938
|
let keys = Object.keys(props.item.preps);
|
|
93922
93939
|
for (let key in keys) {
|
|
@@ -94021,7 +94038,7 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
|
|
|
94021
94038
|
formData: dataForm.value,
|
|
94022
94039
|
"onUpdate:formData": _cache[0] || (_cache[0] = ($event) => dataForm.value = $event)
|
|
94023
94040
|
}, null, 40, ["isDesign", "isSearch", "bareFlag", "field", "formData"])),
|
|
94024
|
-
__props.item.brotherNodes ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
94041
|
+
__props.item.brotherNodes ? (openBlock(), createElementBlock("div", _hoisted_1$W)) : createCommentVNode("", true),
|
|
94025
94042
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.item.brotherNodes, (temp, key) => {
|
|
94026
94043
|
return openBlock(), createElementBlock(Fragment, {
|
|
94027
94044
|
key: unref(compKey)(temp, key)
|
|
@@ -94047,7 +94064,7 @@ const _sfc_main$1M = /* @__PURE__ */ defineComponent({
|
|
|
94047
94064
|
|
|
94048
94065
|
/* unplugin-vue-components disabled */
|
|
94049
94066
|
|
|
94050
|
-
const __unplugin_components_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__scopeId", "data-v-
|
|
94067
|
+
const __unplugin_components_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$1M, [["__scopeId", "data-v-6ce61068"]]);
|
|
94051
94068
|
|
|
94052
94069
|
const StarHorseItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
94053
94070
|
__proto__: null,
|
|
@@ -94117,7 +94134,7 @@ const ShTableListColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineP
|
|
|
94117
94134
|
default: _sfc_main$1L
|
|
94118
94135
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
94119
94136
|
|
|
94120
|
-
const _hoisted_1$
|
|
94137
|
+
const _hoisted_1$V = {
|
|
94121
94138
|
class: "flex-center",
|
|
94122
94139
|
style: { "gap": "4px", "grid-gap": "4px" }
|
|
94123
94140
|
};
|
|
@@ -94152,7 +94169,7 @@ const _sfc_main$1K = /* @__PURE__ */ defineComponent({
|
|
|
94152
94169
|
onClose
|
|
94153
94170
|
}, {
|
|
94154
94171
|
default: withCtx(() => [
|
|
94155
|
-
createElementVNode("div", _hoisted_1$
|
|
94172
|
+
createElementVNode("div", _hoisted_1$V, [
|
|
94156
94173
|
createElementVNode("span", null, toDisplayString(_ctx.data[_ctx.displayName]), 1)
|
|
94157
94174
|
])
|
|
94158
94175
|
]),
|
|
@@ -94360,8 +94377,8 @@ function i18n(key, ...args) {
|
|
|
94360
94377
|
}
|
|
94361
94378
|
}
|
|
94362
94379
|
|
|
94363
|
-
const _hoisted_1$
|
|
94364
|
-
const _hoisted_2$
|
|
94380
|
+
const _hoisted_1$U = { class: "di animated animate__fadeIn" };
|
|
94381
|
+
const _hoisted_2$G = { class: "my-header" };
|
|
94365
94382
|
const _hoisted_3$r = { class: "shdialog" };
|
|
94366
94383
|
const _hoisted_4$j = { class: "dialog-body" };
|
|
94367
94384
|
const _hoisted_5$f = {
|
|
@@ -94468,7 +94485,7 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
|
|
|
94468
94485
|
const _component_el_button = ElButton;
|
|
94469
94486
|
const _component_el_dialog = ElDialog;
|
|
94470
94487
|
return openBlock(), createBlock(Teleport$1, { to: "body" }, [
|
|
94471
|
-
createElementVNode("div", _hoisted_1$
|
|
94488
|
+
createElementVNode("div", _hoisted_1$U, [
|
|
94472
94489
|
createVNode(_component_el_dialog, {
|
|
94473
94490
|
"append-to-body": false,
|
|
94474
94491
|
center: false,
|
|
@@ -94490,7 +94507,7 @@ const _sfc_main$1J = /* @__PURE__ */ defineComponent({
|
|
|
94490
94507
|
}, {
|
|
94491
94508
|
header: withCtx(({ close }) => [
|
|
94492
94509
|
createElementVNode("h3", { onDblclick: fullScreen }, toDisplayString(__props.title || __props.dialogProps.dialogTitle), 33),
|
|
94493
|
-
createElementVNode("div", _hoisted_2$
|
|
94510
|
+
createElementVNode("div", _hoisted_2$G, [
|
|
94494
94511
|
!__props.hideFullScreenIcon ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
94495
94512
|
!!unref(isFullScreen) && __props.draggable ? (openBlock(), createBlock(_component_el_button, {
|
|
94496
94513
|
key: 0,
|
|
@@ -94677,8 +94694,8 @@ const StarHorseDialog = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePro
|
|
|
94677
94694
|
default: __unplugin_components_0$9
|
|
94678
94695
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
94679
94696
|
|
|
94680
|
-
const _hoisted_1$
|
|
94681
|
-
const _hoisted_2$
|
|
94697
|
+
const _hoisted_1$T = { class: "data-line" };
|
|
94698
|
+
const _hoisted_2$F = { class: "flex-center" };
|
|
94682
94699
|
const _sfc_main$1I = /* @__PURE__ */ defineComponent({
|
|
94683
94700
|
__name: "DataPicker",
|
|
94684
94701
|
props: {
|
|
@@ -94881,8 +94898,8 @@ const _sfc_main$1I = /* @__PURE__ */ defineComponent({
|
|
|
94881
94898
|
onNodeClick
|
|
94882
94899
|
}, {
|
|
94883
94900
|
default: withCtx(({ data }) => [
|
|
94884
|
-
createElementVNode("div", _hoisted_1$
|
|
94885
|
-
createElementVNode("div", _hoisted_2$
|
|
94901
|
+
createElementVNode("div", _hoisted_1$T, [
|
|
94902
|
+
createElementVNode("div", _hoisted_2$F, [
|
|
94886
94903
|
createVNode(_component_el_icon, { size: 16 }, {
|
|
94887
94904
|
default: withCtx(() => [
|
|
94888
94905
|
createVNode(_component_School)
|
|
@@ -94932,7 +94949,7 @@ const _sfc_main$1I = /* @__PURE__ */ defineComponent({
|
|
|
94932
94949
|
|
|
94933
94950
|
const DataPicker = /* @__PURE__ */ _export_sfc(_sfc_main$1I, [["__scopeId", "data-v-08abd960"]]);
|
|
94934
94951
|
|
|
94935
|
-
const _hoisted_1$
|
|
94952
|
+
const _hoisted_1$S = { class: "data-wrapper" };
|
|
94936
94953
|
const _sfc_main$1H = /* @__PURE__ */ defineComponent({
|
|
94937
94954
|
__name: "StarHorseDataSelector",
|
|
94938
94955
|
props: {
|
|
@@ -95006,7 +95023,7 @@ const _sfc_main$1H = /* @__PURE__ */ defineComponent({
|
|
|
95006
95023
|
modelValue: selectData.value,
|
|
95007
95024
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectData.value = $event)
|
|
95008
95025
|
}, null, 8, ["title", "datas", "data-url", "page-size", "display-name", "display-value", "checkStrictly", "multiple", "modelValue"]),
|
|
95009
|
-
createElementVNode("div", _hoisted_1$
|
|
95026
|
+
createElementVNode("div", _hoisted_1$S, [
|
|
95010
95027
|
createVNode(__unplugin_components_0$b, {
|
|
95011
95028
|
onClick: openDataPicker,
|
|
95012
95029
|
cursor: "pointer",
|
|
@@ -95095,8 +95112,8 @@ const StarHorseTableViewColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.
|
|
|
95095
95112
|
default: _sfc_main$1G
|
|
95096
95113
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
95097
95114
|
|
|
95098
|
-
const _hoisted_1$
|
|
95099
|
-
const _hoisted_2$
|
|
95115
|
+
const _hoisted_1$R = { style: { "display": "flex", "justify-content": "space-between", "width": "100%", "border-bottom": "var(--star-horse-style) 1px solid" } };
|
|
95116
|
+
const _hoisted_2$E = { class: "tb_title" };
|
|
95100
95117
|
const _sfc_main$1F = /* @__PURE__ */ defineComponent({
|
|
95101
95118
|
__name: "StarHorseDataViewTable",
|
|
95102
95119
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -95117,8 +95134,8 @@ const _sfc_main$1F = /* @__PURE__ */ defineComponent({
|
|
|
95117
95134
|
const _component_star_horse_table_view_column = _sfc_main$1G;
|
|
95118
95135
|
const _component_el_table = ElTable;
|
|
95119
95136
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
95120
|
-
createElementVNode("div", _hoisted_1$
|
|
95121
|
-
createElementVNode("div", _hoisted_2$
|
|
95137
|
+
createElementVNode("div", _hoisted_1$R, [
|
|
95138
|
+
createElementVNode("div", _hoisted_2$E, [
|
|
95122
95139
|
createVNode(_component_star_horse_icon, {
|
|
95123
95140
|
"icon-class": "info",
|
|
95124
95141
|
size: "14px"
|
|
@@ -95376,7 +95393,7 @@ const StarHorseDataViewItems = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.de
|
|
|
95376
95393
|
default: __unplugin_components_0$7
|
|
95377
95394
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
95378
95395
|
|
|
95379
|
-
const _hoisted_1$
|
|
95396
|
+
const _hoisted_1$Q = { class: "star-horse-data-view" };
|
|
95380
95397
|
const _sfc_main$1C = /* @__PURE__ */ defineComponent({
|
|
95381
95398
|
__name: "StarHorseDataView",
|
|
95382
95399
|
props: {
|
|
@@ -95468,7 +95485,7 @@ const _sfc_main$1C = /* @__PURE__ */ defineComponent({
|
|
|
95468
95485
|
});
|
|
95469
95486
|
return (_ctx, _cache) => {
|
|
95470
95487
|
const _component_star_horse_data_view_items = __unplugin_components_0$7;
|
|
95471
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
95488
|
+
return openBlock(), createElementBlock("div", _hoisted_1$Q, [
|
|
95472
95489
|
createVNode(_component_star_horse_data_view_items, {
|
|
95473
95490
|
commonFormat: __props.dataFormat,
|
|
95474
95491
|
"field-list": __props.fieldList,
|
|
@@ -95489,7 +95506,7 @@ const StarHorseDataView$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defin
|
|
|
95489
95506
|
default: StarHorseDataView
|
|
95490
95507
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
95491
95508
|
|
|
95492
|
-
const _hoisted_1$
|
|
95509
|
+
const _hoisted_1$P = ["data", "onMouseup", "onMouseenter"];
|
|
95493
95510
|
const _sfc_main$1B = /* @__PURE__ */ defineComponent({
|
|
95494
95511
|
...{
|
|
95495
95512
|
name: "PageEditorContentMenu"
|
|
@@ -95643,7 +95660,7 @@ const _sfc_main$1B = /* @__PURE__ */ defineComponent({
|
|
|
95643
95660
|
"icon-class": item.icon
|
|
95644
95661
|
}, null, 8, ["icon-class"]),
|
|
95645
95662
|
createTextVNode(" " + toDisplayString(item.text), 1)
|
|
95646
|
-
], 42, _hoisted_1$
|
|
95663
|
+
], 42, _hoisted_1$P)) : createCommentVNode("", true)
|
|
95647
95664
|
], 64);
|
|
95648
95665
|
}), 128)),
|
|
95649
95666
|
(openBlock(), createBlock(Teleport$1, { to: "body" }, [
|
|
@@ -96696,8 +96713,8 @@ function dynamicPageContextMenuData(node) {
|
|
|
96696
96713
|
return contentMenuData;
|
|
96697
96714
|
}
|
|
96698
96715
|
|
|
96699
|
-
const _hoisted_1$
|
|
96700
|
-
const _hoisted_2$
|
|
96716
|
+
const _hoisted_1$O = { class: "node__wrapper" };
|
|
96717
|
+
const _hoisted_2$D = {
|
|
96701
96718
|
key: 0,
|
|
96702
96719
|
class: "node-line node-line-left",
|
|
96703
96720
|
style: { "border-width": "1px", "border-color": "red" }
|
|
@@ -96902,8 +96919,8 @@ const _sfc_main$1A = /* @__PURE__ */ defineComponent({
|
|
|
96902
96919
|
onMouseup: endAction,
|
|
96903
96920
|
onMousemove: dragAction
|
|
96904
96921
|
}, [
|
|
96905
|
-
createElementVNode("div", _hoisted_1$
|
|
96906
|
-
__props.isActive ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
96922
|
+
createElementVNode("div", _hoisted_1$O, [
|
|
96923
|
+
__props.isActive ? (openBlock(), createElementBlock("div", _hoisted_2$D)) : createCommentVNode("", true),
|
|
96907
96924
|
__props.isActive ? (openBlock(), createElementBlock("div", _hoisted_3$q)) : createCommentVNode("", true),
|
|
96908
96925
|
__props.isActive ? (openBlock(true), createElementBlock(Fragment, { key: 2 }, renderList(pointList.value, (item, key) => {
|
|
96909
96926
|
return openBlock(), createElementBlock("div", {
|
|
@@ -99665,8 +99682,8 @@ const UTableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProper
|
|
|
99665
99682
|
default: _sfc_main$1z
|
|
99666
99683
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
99667
99684
|
|
|
99668
|
-
const _hoisted_1$
|
|
99669
|
-
const _hoisted_2$
|
|
99685
|
+
const _hoisted_1$N = { class: "el-upload__tip" };
|
|
99686
|
+
const _hoisted_2$C = { class: "form-list" };
|
|
99670
99687
|
const _hoisted_3$p = { class: "dynamic-tools" };
|
|
99671
99688
|
const _hoisted_4$h = {
|
|
99672
99689
|
key: 0,
|
|
@@ -99938,7 +99955,7 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
|
|
|
99938
99955
|
drag: ""
|
|
99939
99956
|
}, {
|
|
99940
99957
|
tip: withCtx(() => [
|
|
99941
|
-
createElementVNode("div", _hoisted_1$
|
|
99958
|
+
createElementVNode("div", _hoisted_1$N, [
|
|
99942
99959
|
_cache[3] || (_cache[3] = createTextVNode(" 只能上传 xls/xlsx 文件类型 ")),
|
|
99943
99960
|
__props.importInfo?.downloadTemplateUrl ? (openBlock(), createBlock(_component_el_button, {
|
|
99944
99961
|
key: 0,
|
|
@@ -99986,7 +100003,7 @@ const _sfc_main$1y = /* @__PURE__ */ defineComponent({
|
|
|
99986
100003
|
]),
|
|
99987
100004
|
_: 1
|
|
99988
100005
|
}, 8, ["dialogVisible"])) : createCommentVNode("", true),
|
|
99989
|
-
createElementVNode("div", _hoisted_2$
|
|
100006
|
+
createElementVNode("div", _hoisted_2$C, [
|
|
99990
100007
|
createElementVNode("div", _hoisted_3$p, [
|
|
99991
100008
|
!__props.subFlag ? (openBlock(), createElementBlock("div", _hoisted_4$h, [
|
|
99992
100009
|
createVNode(__unplugin_components_0$b, {
|
|
@@ -100514,9 +100531,6 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
|
|
|
100514
100531
|
for (let key in formFields) {
|
|
100515
100532
|
let temp = formFields[key];
|
|
100516
100533
|
let preps = temp?.preps;
|
|
100517
|
-
if (preps?.actionRelation) {
|
|
100518
|
-
temp.preps["actionRelation"](dataForm.value[temp.preps["name"]]);
|
|
100519
|
-
}
|
|
100520
100534
|
if (preps?.actions) {
|
|
100521
100535
|
temp.preps["actions"](dataForm.value);
|
|
100522
100536
|
}
|
|
@@ -100817,7 +100831,7 @@ const _sfc_main$1u = /* @__PURE__ */ defineComponent({
|
|
|
100817
100831
|
|
|
100818
100832
|
/* unplugin-vue-components disabled */
|
|
100819
100833
|
|
|
100820
|
-
const __unplugin_components_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["__scopeId", "data-v-
|
|
100834
|
+
const __unplugin_components_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$1u, [["__scopeId", "data-v-81477a81"]]);
|
|
100821
100835
|
|
|
100822
100836
|
const StarHorseForm = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
100823
100837
|
__proto__: null,
|
|
@@ -145964,8 +145978,8 @@ const StarHorseJsonEditor = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defin
|
|
|
145964
145978
|
default: __unplugin_components_0$5
|
|
145965
145979
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
145966
145980
|
|
|
145967
|
-
const _hoisted_1$
|
|
145968
|
-
const _hoisted_2$
|
|
145981
|
+
const _hoisted_1$M = { class: "system-icon" };
|
|
145982
|
+
const _hoisted_2$B = ["onClick"];
|
|
145969
145983
|
const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
145970
145984
|
__name: "StarHorsePopover",
|
|
145971
145985
|
props: {
|
|
@@ -146012,7 +146026,7 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
|
146012
146026
|
renderSlot(_ctx.$slots, "default")
|
|
146013
146027
|
]),
|
|
146014
146028
|
default: withCtx(() => [
|
|
146015
|
-
createElementVNode("ul", _hoisted_1$
|
|
146029
|
+
createElementVNode("ul", _hoisted_1$M, [
|
|
146016
146030
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(iconList), (sdata, key) => {
|
|
146017
146031
|
return openBlock(), createElementBlock("li", {
|
|
146018
146032
|
key: unref(compKey)(sdata, key),
|
|
@@ -146030,7 +146044,7 @@ const _sfc_main$1s = /* @__PURE__ */ defineComponent({
|
|
|
146030
146044
|
]),
|
|
146031
146045
|
_: 2
|
|
146032
146046
|
}, 1032, ["content"])
|
|
146033
|
-
], 10, _hoisted_2$
|
|
146047
|
+
], 10, _hoisted_2$B);
|
|
146034
146048
|
}), 128))
|
|
146035
146049
|
])
|
|
146036
146050
|
]),
|
|
@@ -146199,8 +146213,8 @@ function analysisFields(compList) {
|
|
|
146199
146213
|
return { fieldList, tabNames, objectNames, batchNames };
|
|
146200
146214
|
}
|
|
146201
146215
|
|
|
146202
|
-
const _hoisted_1$
|
|
146203
|
-
const _hoisted_2$
|
|
146216
|
+
const _hoisted_1$L = { class: "search_content" };
|
|
146217
|
+
const _hoisted_2$A = { class: "search_btn" };
|
|
146204
146218
|
const _sfc_main$1r = /* @__PURE__ */ defineComponent({
|
|
146205
146219
|
__name: "StarHorseSearchComp",
|
|
146206
146220
|
props: {
|
|
@@ -146291,7 +146305,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
|
|
|
146291
146305
|
const _component_el_button = ElButton;
|
|
146292
146306
|
const _component_el_tooltip = ElTooltip;
|
|
146293
146307
|
const _component_el_form = ElForm;
|
|
146294
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
146308
|
+
return openBlock(), createElementBlock("div", _hoisted_1$L, [
|
|
146295
146309
|
__props.formData?.fieldList ? (openBlock(), createBlock(_component_el_form, {
|
|
146296
146310
|
key: 0,
|
|
146297
146311
|
class: "search_area",
|
|
@@ -146388,7 +146402,7 @@ const _sfc_main$1r = /* @__PURE__ */ defineComponent({
|
|
|
146388
146402
|
}), 256)),
|
|
146389
146403
|
createVNode(_component_el_form_item, { style: { "vertical-align": "middle", "align-items": "center" } }, {
|
|
146390
146404
|
default: withCtx(() => [
|
|
146391
|
-
createElementVNode("div", _hoisted_2$
|
|
146405
|
+
createElementVNode("div", _hoisted_2$A, [
|
|
146392
146406
|
createVNode(_component_el_button, {
|
|
146393
146407
|
onClick: dataSearch,
|
|
146394
146408
|
style: { "background": "var(--star-horse-style)", "color": "var(--star-horse-white)" },
|
|
@@ -157166,7 +157180,7 @@ function requireJquery () {
|
|
|
157166
157180
|
var jqueryExports = requireJquery();
|
|
157167
157181
|
const jQuery = /*@__PURE__*/getDefaultExportFromCjs(jqueryExports);
|
|
157168
157182
|
|
|
157169
|
-
const _hoisted_1$
|
|
157183
|
+
const _hoisted_1$K = ["onClick"];
|
|
157170
157184
|
const _sfc_main$1q = /* @__PURE__ */ defineComponent({
|
|
157171
157185
|
__name: "StarHorseTableColumn",
|
|
157172
157186
|
props: {
|
|
@@ -157363,7 +157377,7 @@ const _sfc_main$1q = /* @__PURE__ */ defineComponent({
|
|
|
157363
157377
|
}, null, 8, ["dataForm", "item", "column", "batchName", "compSize"])) : (openBlock(), createElementBlock("p", {
|
|
157364
157378
|
key: 1,
|
|
157365
157379
|
onClick: ($event) => cellClick(scope.row, scope.column)
|
|
157366
|
-
}, toDisplayString(currentDataFormat(scope)), 9, _hoisted_1$
|
|
157380
|
+
}, toDisplayString(currentDataFormat(scope)), 9, _hoisted_1$K))
|
|
157367
157381
|
], 64))
|
|
157368
157382
|
]),
|
|
157369
157383
|
_: 1
|
|
@@ -157381,8 +157395,8 @@ const StarHorseTableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defi
|
|
|
157381
157395
|
default: __unplugin_components_2$1
|
|
157382
157396
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
157383
157397
|
|
|
157384
|
-
const _hoisted_1$
|
|
157385
|
-
const _hoisted_2$
|
|
157398
|
+
const _hoisted_1$J = { class: "table-comp" };
|
|
157399
|
+
const _hoisted_2$z = {
|
|
157386
157400
|
key: 0,
|
|
157387
157401
|
style: { "display": "flex", "justify-content": "space-between", "width": "100%", "border-bottom": "var(--star-horse-style) 1px solid" }
|
|
157388
157402
|
};
|
|
@@ -157566,8 +157580,8 @@ const _sfc_main$1p = /* @__PURE__ */ defineComponent({
|
|
|
157566
157580
|
const _component_el_table = ElTable;
|
|
157567
157581
|
const _component_el_popover = ElPopover;
|
|
157568
157582
|
const _component_star_horse_table_column = __unplugin_components_2$1;
|
|
157569
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
157570
|
-
!__props.dialogInput ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
157583
|
+
return openBlock(), createElementBlock("div", _hoisted_1$J, [
|
|
157584
|
+
!__props.dialogInput ? (openBlock(), createElementBlock("div", _hoisted_2$z, [
|
|
157571
157585
|
createElementVNode("div", _hoisted_3$o, [
|
|
157572
157586
|
createVNode(_component_star_horse_icon, {
|
|
157573
157587
|
"icon-class": "info",
|
|
@@ -157831,11 +157845,11 @@ const useButtonPermissionStore = defineStore("buttonPermission", () => {
|
|
|
157831
157845
|
};
|
|
157832
157846
|
});
|
|
157833
157847
|
|
|
157834
|
-
const _hoisted_1$
|
|
157848
|
+
const _hoisted_1$I = {
|
|
157835
157849
|
key: 0,
|
|
157836
157850
|
class: "inner_button"
|
|
157837
157851
|
};
|
|
157838
|
-
const _hoisted_2$
|
|
157852
|
+
const _hoisted_2$y = { key: 0 };
|
|
157839
157853
|
const _hoisted_3$n = ["onClick", "title"];
|
|
157840
157854
|
const _hoisted_4$f = { class: "flex items-center w-[100%]" };
|
|
157841
157855
|
const _hoisted_5$c = ["onClick"];
|
|
@@ -158017,7 +158031,7 @@ const _sfc_main$1o = /* @__PURE__ */ defineComponent({
|
|
|
158017
158031
|
const _component_el_sub_menu = ElSubMenu;
|
|
158018
158032
|
const _component_el_menu = ElMenu;
|
|
158019
158033
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
158020
|
-
unref(showType) == "line" && Object.keys(unref(permissions) || {}).length > 0 ? (openBlock(), createElementBlock("ul", _hoisted_1$
|
|
158034
|
+
unref(showType) == "line" && Object.keys(unref(permissions) || {}).length > 0 ? (openBlock(), createElementBlock("ul", _hoisted_1$I, [
|
|
158021
158035
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(buttonList), (item, key) => {
|
|
158022
158036
|
return openBlock(), createElementBlock(Fragment, {
|
|
158023
158037
|
key: unref(compKey)(item, key)
|
|
@@ -158073,7 +158087,7 @@ const _sfc_main$1o = /* @__PURE__ */ defineComponent({
|
|
|
158073
158087
|
_: 2
|
|
158074
158088
|
}, 1032, ["size"])) : createCommentVNode("", true)
|
|
158075
158089
|
], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
158076
|
-
unref(permissions)[item.authority] && item.authority == "upload" ? (openBlock(), createElementBlock("li", _hoisted_2$
|
|
158090
|
+
unref(permissions)[item.authority] && item.authority == "upload" ? (openBlock(), createElementBlock("li", _hoisted_2$y, [
|
|
158077
158091
|
createVNode(_component_el_upload, {
|
|
158078
158092
|
"auto-upload": true,
|
|
158079
158093
|
"on-change": upload,
|
|
@@ -158527,7 +158541,7 @@ const tableColumn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePropert
|
|
|
158527
158541
|
default: _sfc_main$1n
|
|
158528
158542
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
158529
158543
|
|
|
158530
|
-
const _hoisted_1$
|
|
158544
|
+
const _hoisted_1$H = { class: "el-dropdown-link" };
|
|
158531
158545
|
const _sfc_main$1m = /* @__PURE__ */ defineComponent({
|
|
158532
158546
|
__name: "tablebtn",
|
|
158533
158547
|
props: {
|
|
@@ -158645,7 +158659,7 @@ const _sfc_main$1m = /* @__PURE__ */ defineComponent({
|
|
|
158645
158659
|
})
|
|
158646
158660
|
]),
|
|
158647
158661
|
default: withCtx(() => [
|
|
158648
|
-
createElementVNode("span", _hoisted_1$
|
|
158662
|
+
createElementVNode("span", _hoisted_1$H, [
|
|
158649
158663
|
createVNode(_component_star_horse_icon, {
|
|
158650
158664
|
"icon-class": "ellipsis",
|
|
158651
158665
|
style: { "color": "var(--star-horse-style)" }
|
|
@@ -158680,8 +158694,8 @@ const tablebtn = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
|
158680
158694
|
default: _sfc_main$1m
|
|
158681
158695
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
158682
158696
|
|
|
158683
|
-
const _hoisted_1$
|
|
158684
|
-
const _hoisted_2$
|
|
158697
|
+
const _hoisted_1$G = { class: "star-horse-table" };
|
|
158698
|
+
const _hoisted_2$x = {
|
|
158685
158699
|
key: 0,
|
|
158686
158700
|
style: { "display": "flex", "justify-content": "space-between", "width": "100%", "border-bottom": "var(--star-horse-style) 1px solid" }
|
|
158687
158701
|
};
|
|
@@ -159397,8 +159411,8 @@ const _sfc_main$1l = /* @__PURE__ */ defineComponent({
|
|
|
159397
159411
|
_: 1,
|
|
159398
159412
|
__: [7]
|
|
159399
159413
|
}, 8, ["dialogVisible"]),
|
|
159400
|
-
createElementVNode("div", _hoisted_1$
|
|
159401
|
-
!__props.dialogInput ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
159414
|
+
createElementVNode("div", _hoisted_1$G, [
|
|
159415
|
+
!__props.dialogInput ? (openBlock(), createElementBlock("div", _hoisted_2$x, [
|
|
159402
159416
|
createElementVNode("div", _hoisted_3$m, [
|
|
159403
159417
|
__props.title || __props.helpMsg ? (openBlock(), createElementBlock("div", _hoisted_4$e, [
|
|
159404
159418
|
__props.helpMsg ? (openBlock(), createBlock(_sfc_main$1N, {
|
|
@@ -159752,8 +159766,8 @@ const StarHorseTableComp = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.define
|
|
|
159752
159766
|
default: __unplugin_components_1$1
|
|
159753
159767
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
159754
159768
|
|
|
159755
|
-
const _hoisted_1$
|
|
159756
|
-
const _hoisted_2$
|
|
159769
|
+
const _hoisted_1$F = ["onClick"];
|
|
159770
|
+
const _hoisted_2$w = { class: "name" };
|
|
159757
159771
|
const _hoisted_3$l = {
|
|
159758
159772
|
key: 0,
|
|
159759
159773
|
class: "btn"
|
|
@@ -159827,7 +159841,7 @@ const _sfc_main$1k = /* @__PURE__ */ defineComponent({
|
|
|
159827
159841
|
class: "menu-title",
|
|
159828
159842
|
onClick: ($event) => selectData(item, $event)
|
|
159829
159843
|
}, [
|
|
159830
|
-
createElementVNode("div", _hoisted_2$
|
|
159844
|
+
createElementVNode("div", _hoisted_2$w, toDisplayString(item[__props.preps.label]), 1),
|
|
159831
159845
|
__props.btnVisible || __props.rmvVisible ? (openBlock(), createElementBlock("div", _hoisted_3$l, [
|
|
159832
159846
|
createVNode(_component_el_tooltip, { content: __props.btnTitle }, {
|
|
159833
159847
|
default: withCtx(() => [
|
|
@@ -159853,7 +159867,7 @@ const _sfc_main$1k = /* @__PURE__ */ defineComponent({
|
|
|
159853
159867
|
_: 2
|
|
159854
159868
|
}, 1032, ["content"])
|
|
159855
159869
|
])) : createCommentVNode("", true)
|
|
159856
|
-
], 8, _hoisted_1$
|
|
159870
|
+
], 8, _hoisted_1$F)
|
|
159857
159871
|
]),
|
|
159858
159872
|
default: withCtx(() => [
|
|
159859
159873
|
createVNode(_component_SubSystemMenu, {
|
|
@@ -159926,11 +159940,11 @@ const _sfc_main$1k = /* @__PURE__ */ defineComponent({
|
|
|
159926
159940
|
|
|
159927
159941
|
const SubSystemMenu = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["__scopeId", "data-v-6f7c685e"]]);
|
|
159928
159942
|
|
|
159929
|
-
const _hoisted_1$
|
|
159943
|
+
const _hoisted_1$E = {
|
|
159930
159944
|
key: 0,
|
|
159931
159945
|
class: "selected-data gap-2"
|
|
159932
159946
|
};
|
|
159933
|
-
const _hoisted_2$
|
|
159947
|
+
const _hoisted_2$v = { class: "tree-title" };
|
|
159934
159948
|
const _hoisted_3$k = { class: "title flex items-center" };
|
|
159935
159949
|
const _hoisted_4$c = {
|
|
159936
159950
|
key: 0,
|
|
@@ -160204,7 +160218,7 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
|
|
|
160204
160218
|
})
|
|
160205
160219
|
}, {
|
|
160206
160220
|
default: withCtx(() => [
|
|
160207
|
-
__props.showSelectData && unref(selectedDataList)?.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
160221
|
+
__props.showSelectData && unref(selectedDataList)?.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_1$E, [
|
|
160208
160222
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(selectedDataList), (item) => {
|
|
160209
160223
|
return openBlock(), createBlock(_component_el_tag, {
|
|
160210
160224
|
key: unref(_compKey)(item, item[__props.preps.value]),
|
|
@@ -160218,7 +160232,7 @@ const _sfc_main$1j = /* @__PURE__ */ defineComponent({
|
|
|
160218
160232
|
}, 1032, ["onClose"]);
|
|
160219
160233
|
}), 128))
|
|
160220
160234
|
])) : createCommentVNode("", true),
|
|
160221
|
-
createElementVNode("div", _hoisted_2$
|
|
160235
|
+
createElementVNode("div", _hoisted_2$v, [
|
|
160222
160236
|
createElementVNode("div", _hoisted_3$k, [
|
|
160223
160237
|
createTextVNode(toDisplayString(__props.treeTitle) + " ", 1),
|
|
160224
160238
|
__props.helpMsg ? (openBlock(), createBlock(_sfc_main$1N, {
|
|
@@ -160772,8 +160786,8 @@ const tableAction = (props, buttonControl) => {
|
|
|
160772
160786
|
buttonControl.undoMergeColDisabled = undoMergeColAction(props);
|
|
160773
160787
|
};
|
|
160774
160788
|
|
|
160775
|
-
const _hoisted_1$
|
|
160776
|
-
const _hoisted_2$
|
|
160789
|
+
const _hoisted_1$D = { class: "component-list" };
|
|
160790
|
+
const _hoisted_2$u = { class: "title" };
|
|
160777
160791
|
const _hoisted_3$j = { id: "container" };
|
|
160778
160792
|
const _hoisted_4$b = ["onClick"];
|
|
160779
160793
|
const _hoisted_5$8 = { id: "basic" };
|
|
@@ -160802,8 +160816,8 @@ const _sfc_main$1h = /* @__PURE__ */ defineComponent({
|
|
|
160802
160816
|
const _component_el_divider = ElDivider;
|
|
160803
160817
|
const _component_star_horse_icon = __unplugin_components_0$b;
|
|
160804
160818
|
const _component_el_scrollbar = ElScrollbar;
|
|
160805
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
160806
|
-
createElementVNode("div", _hoisted_2$
|
|
160819
|
+
return openBlock(), createElementBlock("div", _hoisted_1$D, [
|
|
160820
|
+
createElementVNode("div", _hoisted_2$u, [
|
|
160807
160821
|
createVNode(_component_el_anchor, {
|
|
160808
160822
|
type: "underline",
|
|
160809
160823
|
container: containerRef.value,
|
|
@@ -160988,11 +161002,11 @@ function fieldCopy(data, type) {
|
|
|
160988
161002
|
return mvData;
|
|
160989
161003
|
}
|
|
160990
161004
|
|
|
160991
|
-
const _hoisted_1$
|
|
161005
|
+
const _hoisted_1$C = {
|
|
160992
161006
|
key: 0,
|
|
160993
161007
|
class: "drag-handler"
|
|
160994
161008
|
};
|
|
160995
|
-
const _hoisted_2$
|
|
161009
|
+
const _hoisted_2$t = {
|
|
160996
161010
|
key: 1,
|
|
160997
161011
|
class: "field-action"
|
|
160998
161012
|
};
|
|
@@ -161190,7 +161204,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
|
|
|
161190
161204
|
onContextmenu: containerContextMenu
|
|
161191
161205
|
}, [
|
|
161192
161206
|
renderSlot(_ctx.$slots, "default", {}, void 0, true),
|
|
161193
|
-
unref(isEdit) && __props.isDesign && unref(currentItemId) == __props.formItem.id ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
161207
|
+
unref(isEdit) && __props.isDesign && unref(currentItemId) == __props.formItem.id ? (openBlock(), createElementBlock("div", _hoisted_1$C, [
|
|
161194
161208
|
createVNode(_component_el_tooltip, { content: "拖动" }, {
|
|
161195
161209
|
default: withCtx(() => [
|
|
161196
161210
|
createVNode(_component_star_horse_icon, {
|
|
@@ -161224,7 +161238,7 @@ const _sfc_main$1g = /* @__PURE__ */ defineComponent({
|
|
|
161224
161238
|
_: 1
|
|
161225
161239
|
})
|
|
161226
161240
|
])) : createCommentVNode("", true),
|
|
161227
|
-
unref(isEdit) && __props.isDesign && unref(currentItemId) == __props.formItem.id ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
161241
|
+
unref(isEdit) && __props.isDesign && unref(currentItemId) == __props.formItem.id ? (openBlock(), createElementBlock("div", _hoisted_2$t, [
|
|
161228
161242
|
__props.formItem.itemType == "dytable" || __props.formItem.itemType == "box" ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
161229
161243
|
key: 0,
|
|
161230
161244
|
content: "插入行"
|
|
@@ -161288,7 +161302,7 @@ const groupBoxContainer = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineP
|
|
|
161288
161302
|
default: __unplugin_components_1
|
|
161289
161303
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
161290
161304
|
|
|
161291
|
-
const _hoisted_1$
|
|
161305
|
+
const _hoisted_1$B = { class: "comp-item" };
|
|
161292
161306
|
const _sfc_main$1f = /* @__PURE__ */ defineComponent({
|
|
161293
161307
|
__name: "box-container",
|
|
161294
161308
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -161379,8 +161393,8 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
|
|
|
161379
161393
|
list: sdata.items
|
|
161380
161394
|
}, {
|
|
161381
161395
|
item: withCtx(({ element: data }) => [
|
|
161382
|
-
createElementVNode("div", _hoisted_1$
|
|
161383
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
161396
|
+
createElementVNode("div", _hoisted_1$B, [
|
|
161397
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
161384
161398
|
key: data.id,
|
|
161385
161399
|
field: data,
|
|
161386
161400
|
formInfo: __props.formInfo,
|
|
@@ -161406,7 +161420,7 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
|
|
|
161406
161420
|
}, {
|
|
161407
161421
|
default: withCtx(() => [
|
|
161408
161422
|
(openBlock(true), createElementBlock(Fragment, null, renderList(sdata.items, (data) => {
|
|
161409
|
-
return openBlock(), createBlock(resolveDynamicComponent(
|
|
161423
|
+
return openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
161410
161424
|
field: data,
|
|
161411
161425
|
isDesign: __props.isDesign,
|
|
161412
161426
|
disabled: __props.disabled,
|
|
@@ -161432,15 +161446,15 @@ const _sfc_main$1f = /* @__PURE__ */ defineComponent({
|
|
|
161432
161446
|
|
|
161433
161447
|
/* unplugin-vue-components disabled */
|
|
161434
161448
|
|
|
161435
|
-
const boxContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-
|
|
161449
|
+
const boxContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["__scopeId", "data-v-b4acf15e"]]);
|
|
161436
161450
|
|
|
161437
161451
|
const boxContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
161438
161452
|
__proto__: null,
|
|
161439
161453
|
default: boxContainer
|
|
161440
161454
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
161441
161455
|
|
|
161442
|
-
const _hoisted_1$
|
|
161443
|
-
const _hoisted_2$
|
|
161456
|
+
const _hoisted_1$A = { class: "card-header flex items-center justify-between" };
|
|
161457
|
+
const _hoisted_2$s = { class: "w-[60%]" };
|
|
161444
161458
|
const _hoisted_3$h = { class: "comp-item" };
|
|
161445
161459
|
const _sfc_main$1e = /* @__PURE__ */ defineComponent({
|
|
161446
161460
|
__name: "card-container",
|
|
@@ -161461,9 +161475,6 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
|
|
|
161461
161475
|
const isDragging = computed(() => designForm.isDragging);
|
|
161462
161476
|
const formData = useModel(__props, "formData");
|
|
161463
161477
|
let containerType = ["tab", "box", "table", "card", "dytable", "collapse"];
|
|
161464
|
-
const getComponentName = (data) => {
|
|
161465
|
-
return containerType.includes(data.itemType) ? data.itemType + "-container" : data.itemType + "-item";
|
|
161466
|
-
};
|
|
161467
161478
|
const isContainer = (data) => {
|
|
161468
161479
|
return containerType.includes(data.itemType);
|
|
161469
161480
|
};
|
|
@@ -161523,8 +161534,8 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
|
|
|
161523
161534
|
shadow: __props.field.preps["shadow"]
|
|
161524
161535
|
}, {
|
|
161525
161536
|
header: withCtx(() => [
|
|
161526
|
-
createElementVNode("div", _hoisted_1$
|
|
161527
|
-
createElementVNode("div", _hoisted_2$
|
|
161537
|
+
createElementVNode("div", _hoisted_1$A, [
|
|
161538
|
+
createElementVNode("div", _hoisted_2$s, [
|
|
161528
161539
|
createTextVNode(toDisplayString(adata.title || adata.tabName) + " ", 1),
|
|
161529
161540
|
adata.helpMsg ? (openBlock(), createBlock(_component_help, {
|
|
161530
161541
|
key: 0,
|
|
@@ -161550,7 +161561,7 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
|
|
|
161550
161561
|
class: "comp-item",
|
|
161551
161562
|
style: normalizeStyle({ marginTop: isContainer(header) ? "25px" : "10px" })
|
|
161552
161563
|
}, [
|
|
161553
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
161564
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(header)), {
|
|
161554
161565
|
key: header.id,
|
|
161555
161566
|
field: header,
|
|
161556
161567
|
isDesign: __props.isDesign,
|
|
@@ -161586,7 +161597,7 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
|
|
|
161586
161597
|
}, {
|
|
161587
161598
|
item: withCtx(({ element: item }) => [
|
|
161588
161599
|
createElementVNode("div", _hoisted_3$h, [
|
|
161589
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
161600
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(item)), {
|
|
161590
161601
|
key: item.id,
|
|
161591
161602
|
field: item,
|
|
161592
161603
|
isDesign: __props.isDesign,
|
|
@@ -161616,15 +161627,15 @@ const _sfc_main$1e = /* @__PURE__ */ defineComponent({
|
|
|
161616
161627
|
|
|
161617
161628
|
/* unplugin-vue-components disabled */
|
|
161618
161629
|
|
|
161619
|
-
const cardContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__scopeId", "data-v-
|
|
161630
|
+
const cardContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["__scopeId", "data-v-fd710582"]]);
|
|
161620
161631
|
|
|
161621
161632
|
const cardContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
161622
161633
|
__proto__: null,
|
|
161623
161634
|
default: cardContainer
|
|
161624
161635
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
161625
161636
|
|
|
161626
|
-
const _hoisted_1$
|
|
161627
|
-
const _hoisted_2$
|
|
161637
|
+
const _hoisted_1$z = { class: "collapse-item-title title" };
|
|
161638
|
+
const _hoisted_2$r = { class: "comp-item" };
|
|
161628
161639
|
const _sfc_main$1d = /* @__PURE__ */ defineComponent({
|
|
161629
161640
|
__name: "collapse-container",
|
|
161630
161641
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -161643,10 +161654,6 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
|
|
|
161643
161654
|
let designForm = useDesignFormStore(piniaInstance);
|
|
161644
161655
|
const isDragging = computed(() => designForm.isDragging);
|
|
161645
161656
|
const formData = useModel(__props, "formData");
|
|
161646
|
-
let containerType = ["tab", "box", "table", "card", "dytable", "collapse"];
|
|
161647
|
-
const getComponentName = (data) => {
|
|
161648
|
-
return containerType.includes(data.itemType) ? data.itemType + "-container" : data.itemType + "-item";
|
|
161649
|
-
};
|
|
161650
161657
|
const checkItem = (adata) => {
|
|
161651
161658
|
if (!adata["items"]) {
|
|
161652
161659
|
adata["items"] = [];
|
|
@@ -161714,7 +161721,7 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
|
|
|
161714
161721
|
name: adata.tabName
|
|
161715
161722
|
}, {
|
|
161716
161723
|
title: withCtx(() => [
|
|
161717
|
-
createElementVNode("div", _hoisted_1$
|
|
161724
|
+
createElementVNode("div", _hoisted_1$z, [
|
|
161718
161725
|
createElementVNode("div", null, toDisplayString(adata.label || adata.objectName), 1)
|
|
161719
161726
|
])
|
|
161720
161727
|
]),
|
|
@@ -161735,8 +161742,8 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
|
|
|
161735
161742
|
list: adata["items"]
|
|
161736
161743
|
}, {
|
|
161737
161744
|
item: withCtx(({ element: data }) => [
|
|
161738
|
-
createElementVNode("div", _hoisted_2$
|
|
161739
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
161745
|
+
createElementVNode("div", _hoisted_2$r, [
|
|
161746
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
161740
161747
|
key: data.id,
|
|
161741
161748
|
field: data,
|
|
161742
161749
|
isDesign: __props.isDesign,
|
|
@@ -161769,15 +161776,15 @@ const _sfc_main$1d = /* @__PURE__ */ defineComponent({
|
|
|
161769
161776
|
|
|
161770
161777
|
/* unplugin-vue-components disabled */
|
|
161771
161778
|
|
|
161772
|
-
const collapseContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__scopeId", "data-v-
|
|
161779
|
+
const collapseContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["__scopeId", "data-v-c32d2906"]]);
|
|
161773
161780
|
|
|
161774
161781
|
const collapseContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
161775
161782
|
__proto__: null,
|
|
161776
161783
|
default: collapseContainer
|
|
161777
161784
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
161778
161785
|
|
|
161779
|
-
const _hoisted_1$
|
|
161780
|
-
const _hoisted_2$
|
|
161786
|
+
const _hoisted_1$y = ["colspan", "rowspan"];
|
|
161787
|
+
const _hoisted_2$q = {
|
|
161781
161788
|
key: 0,
|
|
161782
161789
|
class: "table-cell-action"
|
|
161783
161790
|
};
|
|
@@ -161828,9 +161835,6 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
|
|
|
161828
161835
|
deleteWholeColDisabled: false,
|
|
161829
161836
|
deleteWholeRowDisabled: false
|
|
161830
161837
|
});
|
|
161831
|
-
const getComponentName = (data) => {
|
|
161832
|
-
return data?.itemType + "-item";
|
|
161833
|
-
};
|
|
161834
161838
|
const onDragAdd = (evt, dataList) => {
|
|
161835
161839
|
selectCurrentTd();
|
|
161836
161840
|
let newIndex = evt.newIndex;
|
|
@@ -161947,7 +161951,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
|
|
|
161947
161951
|
createElementVNode("div", {
|
|
161948
161952
|
class: normalizeClass({ "comp-item": data?.preps["headerFlag"] != "Y", "bare-item": data?.preps["headerFlag"] })
|
|
161949
161953
|
}, [
|
|
161950
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
161954
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
161951
161955
|
key: data?.id,
|
|
161952
161956
|
field: data,
|
|
161953
161957
|
formInfo: __props.formInfo,
|
|
@@ -161961,7 +161965,7 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
|
|
|
161961
161965
|
]),
|
|
161962
161966
|
_: 1
|
|
161963
161967
|
}, 8, ["item-key", "list"]),
|
|
161964
|
-
unref(isEdit) && __props.isDesign && unref(currentSubItemId) == __props.field._uuid ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
161968
|
+
unref(isEdit) && __props.isDesign && unref(currentSubItemId) == __props.field._uuid ? (openBlock(), createElementBlock("div", _hoisted_2$q, [
|
|
161965
161969
|
createVNode(_component_el_dropdown, {
|
|
161966
161970
|
trigger: "click",
|
|
161967
161971
|
onCommand: handleTableCellCommand,
|
|
@@ -162125,21 +162129,21 @@ const _sfc_main$1c = /* @__PURE__ */ defineComponent({
|
|
|
162125
162129
|
_: 1
|
|
162126
162130
|
}, 8, ["size"])
|
|
162127
162131
|
])) : createCommentVNode("", true)
|
|
162128
|
-
], 46, _hoisted_1$
|
|
162132
|
+
], 46, _hoisted_1$y);
|
|
162129
162133
|
};
|
|
162130
162134
|
}
|
|
162131
162135
|
});
|
|
162132
162136
|
|
|
162133
162137
|
/* unplugin-vue-components disabled */
|
|
162134
162138
|
|
|
162135
|
-
const DytableCol = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-
|
|
162139
|
+
const DytableCol = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["__scopeId", "data-v-c58af32d"]]);
|
|
162136
162140
|
|
|
162137
162141
|
const dytableCol = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
162138
162142
|
__proto__: null,
|
|
162139
162143
|
default: DytableCol
|
|
162140
162144
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
162141
162145
|
|
|
162142
|
-
const _hoisted_1$
|
|
162146
|
+
const _hoisted_1$x = { class: "dy-tr" };
|
|
162143
162147
|
const _sfc_main$1b = /* @__PURE__ */ defineComponent({
|
|
162144
162148
|
__name: "dytable-container",
|
|
162145
162149
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -162173,7 +162177,7 @@ const _sfc_main$1b = /* @__PURE__ */ defineComponent({
|
|
|
162173
162177
|
}, [
|
|
162174
162178
|
createElementVNode("tbody", null, [
|
|
162175
162179
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.field.preps.elements, (row, rowIndex) => {
|
|
162176
|
-
return openBlock(), createElementBlock("tr", _hoisted_1$
|
|
162180
|
+
return openBlock(), createElementBlock("tr", _hoisted_1$x, [
|
|
162177
162181
|
(openBlock(true), createElementBlock(Fragment, null, renderList(row.columns, (td, colIndex) => {
|
|
162178
162182
|
return openBlock(), createBlock(DytableCol, {
|
|
162179
162183
|
field: td,
|
|
@@ -162231,9 +162235,6 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
|
|
|
162231
162235
|
const isDragging = computed(() => designForm.isDragging);
|
|
162232
162236
|
const formData = useModel(__props, "formData");
|
|
162233
162237
|
let containerType = ["tab", "box", "table", "card", "dytable", "collapse"];
|
|
162234
|
-
const getComponentName = (data) => {
|
|
162235
|
-
return containerType.includes(data.itemType) ? data.itemType + "-container" : data.itemType + "-item";
|
|
162236
|
-
};
|
|
162237
162238
|
const isContainer = (data) => {
|
|
162238
162239
|
return containerType.includes(data.itemType);
|
|
162239
162240
|
};
|
|
@@ -162342,7 +162343,7 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
|
|
|
162342
162343
|
class: "comp-item",
|
|
162343
162344
|
style: normalizeStyle({ marginTop: isContainer(data) ? "25px" : "10px" })
|
|
162344
162345
|
}, [
|
|
162345
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
162346
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
162346
162347
|
key: data.id,
|
|
162347
162348
|
field: data,
|
|
162348
162349
|
isDesign: __props.isDesign,
|
|
@@ -162375,15 +162376,15 @@ const _sfc_main$1a = /* @__PURE__ */ defineComponent({
|
|
|
162375
162376
|
|
|
162376
162377
|
/* unplugin-vue-components disabled */
|
|
162377
162378
|
|
|
162378
|
-
const tabContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-
|
|
162379
|
+
const tabContainer = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-b2686567"]]);
|
|
162379
162380
|
|
|
162380
162381
|
const tabContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
162381
162382
|
__proto__: null,
|
|
162382
162383
|
default: tabContainer
|
|
162383
162384
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
162384
162385
|
|
|
162385
|
-
const _hoisted_1$
|
|
162386
|
-
const _hoisted_2$
|
|
162386
|
+
const _hoisted_1$w = { class: "container-thead" };
|
|
162387
|
+
const _hoisted_2$p = ["onMouseenter", "onMouseleave"];
|
|
162387
162388
|
const _hoisted_3$g = {
|
|
162388
162389
|
key: 0,
|
|
162389
162390
|
class: "td-operator"
|
|
@@ -162412,9 +162413,6 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
|
|
|
162412
162413
|
let isEdit = computed(() => designForm.isEdit);
|
|
162413
162414
|
const isDragging = computed(() => designForm.isDragging);
|
|
162414
162415
|
const formData = useModel(__props, "formData");
|
|
162415
|
-
const getComponentName = (data) => {
|
|
162416
|
-
return data?.itemType + "-item";
|
|
162417
|
-
};
|
|
162418
162416
|
const onDragAdd = (evt, dataList) => {
|
|
162419
162417
|
let newIndex = evt.newIndex;
|
|
162420
162418
|
if (excludeContainerType.includes(draggingItem.value.itemType)) {
|
|
@@ -162500,7 +162498,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
|
|
|
162500
162498
|
border: unref(isEdit) && __props.isDesign ? "1px solid #dfe6ec" : "none"
|
|
162501
162499
|
})
|
|
162502
162500
|
}, [
|
|
162503
|
-
createElementVNode("thead", _hoisted_1$
|
|
162501
|
+
createElementVNode("thead", _hoisted_1$w, [
|
|
162504
162502
|
createElementVNode("tr", null, [
|
|
162505
162503
|
(openBlock(true), createElementBlock(Fragment, null, renderList(parseInt(__props.field.preps.columns || 1), (td) => {
|
|
162506
162504
|
return openBlock(), createElementBlock("th", {
|
|
@@ -162520,7 +162518,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
|
|
|
162520
162518
|
}, 1024)
|
|
162521
162519
|
])) : createCommentVNode("", true),
|
|
162522
162520
|
createTextVNode(" " + toDisplayString(analysisData(td)), 1)
|
|
162523
|
-
], 40, _hoisted_2$
|
|
162521
|
+
], 40, _hoisted_2$p);
|
|
162524
162522
|
}), 256))
|
|
162525
162523
|
])
|
|
162526
162524
|
]),
|
|
@@ -162545,7 +162543,7 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
|
|
|
162545
162543
|
}, {
|
|
162546
162544
|
item: withCtx(({ element: data }) => [
|
|
162547
162545
|
createElementVNode("div", _hoisted_5$7, [
|
|
162548
|
-
(openBlock(), createBlock(resolveDynamicComponent(
|
|
162546
|
+
(openBlock(), createBlock(resolveDynamicComponent(unref(itemCheck)(data)), {
|
|
162549
162547
|
key: data?.id,
|
|
162550
162548
|
field: data,
|
|
162551
162549
|
isDesign: __props.isDesign,
|
|
@@ -162573,18 +162571,18 @@ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
|
|
|
162573
162571
|
|
|
162574
162572
|
/* unplugin-vue-components disabled */
|
|
162575
162573
|
|
|
162576
|
-
const tableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__scopeId", "data-v-
|
|
162574
|
+
const tableContainer = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["__scopeId", "data-v-77a5f30f"]]);
|
|
162577
162575
|
|
|
162578
162576
|
const tableContainer$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
162579
162577
|
__proto__: null,
|
|
162580
162578
|
default: tableContainer
|
|
162581
162579
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
162582
162580
|
|
|
162583
|
-
const _hoisted_1$
|
|
162581
|
+
const _hoisted_1$v = {
|
|
162584
162582
|
key: 1,
|
|
162585
162583
|
class: "form-item-operation"
|
|
162586
162584
|
};
|
|
162587
|
-
const _hoisted_2$
|
|
162585
|
+
const _hoisted_2$o = {
|
|
162588
162586
|
key: 2,
|
|
162589
162587
|
class: "field-action"
|
|
162590
162588
|
};
|
|
@@ -162693,7 +162691,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
|
|
|
162693
162691
|
message: __props.formItem.preps?.helpMsg
|
|
162694
162692
|
}, null, 8, ["message"])) : createCommentVNode("", true),
|
|
162695
162693
|
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
162696
|
-
], 6)) : (openBlock(), createElementBlock("div", _hoisted_1$
|
|
162694
|
+
], 6)) : (openBlock(), createElementBlock("div", _hoisted_1$v, [
|
|
162697
162695
|
__props.isDesign ? (openBlock(), createElementBlock("div", {
|
|
162698
162696
|
key: 0,
|
|
162699
162697
|
class: normalizeClass(["w-fill", {
|
|
@@ -162737,7 +162735,7 @@ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
|
|
|
162737
162735
|
}, null, 8, ["message"])) : createCommentVNode("", true),
|
|
162738
162736
|
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
162739
162737
|
], 6)),
|
|
162740
|
-
unref(isEdit) && !__props.disabled && unref(currentItemId) == __props.formItem?.preps.id ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
162738
|
+
unref(isEdit) && !__props.disabled && unref(currentItemId) == __props.formItem?.preps.id ? (openBlock(), createElementBlock("div", _hoisted_2$o, [
|
|
162741
162739
|
__props.parentField?.itemType ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
162742
162740
|
key: 0,
|
|
162743
162741
|
content: "选择父容器"
|
|
@@ -162961,9 +162959,6 @@ const allAction = (context, emits, formData, actionName, isInit = false) => {
|
|
|
162961
162959
|
if (actionName == "input" && actionName != tempName) {
|
|
162962
162960
|
return;
|
|
162963
162961
|
}
|
|
162964
|
-
if (actionName == field.actionName && field.actionRelation) {
|
|
162965
|
-
field.actionRelation(currentData[field.fieldName], currentData["xh"]);
|
|
162966
|
-
}
|
|
162967
162962
|
};
|
|
162968
162963
|
const buttonAction = (context, emits, formData, code) => {
|
|
162969
162964
|
const currentData = isRef(formData) ? formData.value : formData;
|
|
@@ -163108,7 +163103,7 @@ const areaItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty
|
|
|
163108
163103
|
default: areaItem
|
|
163109
163104
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
163110
163105
|
|
|
163111
|
-
const _hoisted_1$
|
|
163106
|
+
const _hoisted_1$u = ["fid"];
|
|
163112
163107
|
const _sfc_main$16 = /* @__PURE__ */ defineComponent({
|
|
163113
163108
|
__name: "audio-item",
|
|
163114
163109
|
props: {
|
|
@@ -163227,7 +163222,7 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
|
|
|
163227
163222
|
ref_key: "audio",
|
|
163228
163223
|
ref: audio,
|
|
163229
163224
|
controls: ""
|
|
163230
|
-
}, null, 8, _hoisted_1$
|
|
163225
|
+
}, null, 8, _hoisted_1$u)
|
|
163231
163226
|
]),
|
|
163232
163227
|
_: 1
|
|
163233
163228
|
}, 8, ["isDesign", "disabled", "bareFlag", "formItem", "parentField"]);
|
|
@@ -163870,8 +163865,8 @@ const colorItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty(
|
|
|
163870
163865
|
default: _sfc_main$11
|
|
163871
163866
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
163872
163867
|
|
|
163873
|
-
const _hoisted_1$
|
|
163874
|
-
const _hoisted_2$
|
|
163868
|
+
const _hoisted_1$t = { class: "popup-result" };
|
|
163869
|
+
const _hoisted_2$n = { class: "popup-result-scroll" };
|
|
163875
163870
|
const _sfc_main$10 = /* @__PURE__ */ defineComponent({
|
|
163876
163871
|
__name: "Crontab-Result",
|
|
163877
163872
|
props: {
|
|
@@ -164345,9 +164340,9 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
|
|
|
164345
164340
|
});
|
|
164346
164341
|
return (_ctx, _cache) => {
|
|
164347
164342
|
const _component_el_tag = ElTag;
|
|
164348
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
164343
|
+
return openBlock(), createElementBlock("div", _hoisted_1$t, [
|
|
164349
164344
|
_cache[1] || (_cache[1] = createElementVNode("p", { class: "title" }, "最近5次运行时间", -1)),
|
|
164350
|
-
createElementVNode("div", _hoisted_2$
|
|
164345
|
+
createElementVNode("div", _hoisted_2$n, [
|
|
164351
164346
|
unref(isShow) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(unref(resultList), (item) => {
|
|
164352
164347
|
return openBlock(), createBlock(_component_el_tag, {
|
|
164353
164348
|
class: "my-[5px]",
|
|
@@ -164375,8 +164370,8 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
|
|
|
164375
164370
|
|
|
164376
164371
|
const __unplugin_components_3 = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__scopeId", "data-v-c69e7cfe"]]);
|
|
164377
164372
|
|
|
164378
|
-
const _hoisted_1$
|
|
164379
|
-
const _hoisted_2$
|
|
164373
|
+
const _hoisted_1$s = { class: "cron-content" };
|
|
164374
|
+
const _hoisted_2$m = { class: "cron-item" };
|
|
164380
164375
|
const _hoisted_3$e = { class: "cron-item" };
|
|
164381
164376
|
const _hoisted_4$9 = { class: "cron-item" };
|
|
164382
164377
|
const _hoisted_5$6 = { class: "cron-item" };
|
|
@@ -164476,8 +164471,8 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
|
|
|
164476
164471
|
const _component_el_input_number = ElInputNumber;
|
|
164477
164472
|
const _component_el_checkbox = ElCheckbox;
|
|
164478
164473
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
164479
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
164480
|
-
createElementVNode("div", _hoisted_2$
|
|
164474
|
+
return openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
164475
|
+
createElementVNode("div", _hoisted_2$m, [
|
|
164481
164476
|
createVNode(_component_el_radio, {
|
|
164482
164477
|
size: "small",
|
|
164483
164478
|
modelValue: unref(radioValue),
|
|
@@ -164602,8 +164597,8 @@ const _sfc_main$$ = /* @__PURE__ */ defineComponent({
|
|
|
164602
164597
|
}
|
|
164603
164598
|
});
|
|
164604
164599
|
|
|
164605
|
-
const _hoisted_1$
|
|
164606
|
-
const _hoisted_2$
|
|
164600
|
+
const _hoisted_1$r = { class: "cron-content" };
|
|
164601
|
+
const _hoisted_2$l = { class: "cron-item" };
|
|
164607
164602
|
const _hoisted_3$d = { class: "cron-item" };
|
|
164608
164603
|
const _hoisted_4$8 = { class: "cron-item" };
|
|
164609
164604
|
const _hoisted_5$5 = { class: "cron-item" };
|
|
@@ -164700,8 +164695,8 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
|
|
|
164700
164695
|
const _component_el_input_number = ElInputNumber;
|
|
164701
164696
|
const _component_el_checkbox = ElCheckbox;
|
|
164702
164697
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
164703
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
164704
|
-
createElementVNode("div", _hoisted_2$
|
|
164698
|
+
return openBlock(), createElementBlock("div", _hoisted_1$r, [
|
|
164699
|
+
createElementVNode("div", _hoisted_2$l, [
|
|
164705
164700
|
createVNode(_component_el_radio, {
|
|
164706
164701
|
size: "small",
|
|
164707
164702
|
modelValue: unref(radioValue),
|
|
@@ -164823,8 +164818,8 @@ const _sfc_main$_ = /* @__PURE__ */ defineComponent({
|
|
|
164823
164818
|
}
|
|
164824
164819
|
});
|
|
164825
164820
|
|
|
164826
|
-
const _hoisted_1$
|
|
164827
|
-
const _hoisted_2$
|
|
164821
|
+
const _hoisted_1$q = { class: "cron-content" };
|
|
164822
|
+
const _hoisted_2$k = { class: "cron-item" };
|
|
164828
164823
|
const _hoisted_3$c = { class: "cron-item" };
|
|
164829
164824
|
const _hoisted_4$7 = { class: "cron-item" };
|
|
164830
164825
|
const _hoisted_5$4 = { class: "cron-item" };
|
|
@@ -164921,8 +164916,8 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
|
|
|
164921
164916
|
const _component_el_input_number = ElInputNumber;
|
|
164922
164917
|
const _component_el_checkbox = ElCheckbox;
|
|
164923
164918
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
164924
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
164925
|
-
createElementVNode("div", _hoisted_2$
|
|
164919
|
+
return openBlock(), createElementBlock("div", _hoisted_1$q, [
|
|
164920
|
+
createElementVNode("div", _hoisted_2$k, [
|
|
164926
164921
|
createVNode(_component_el_radio, {
|
|
164927
164922
|
size: "small",
|
|
164928
164923
|
modelValue: unref(radioValue),
|
|
@@ -165043,8 +165038,8 @@ const _sfc_main$Z = /* @__PURE__ */ defineComponent({
|
|
|
165043
165038
|
}
|
|
165044
165039
|
});
|
|
165045
165040
|
|
|
165046
|
-
const _hoisted_1$
|
|
165047
|
-
const _hoisted_2$
|
|
165041
|
+
const _hoisted_1$p = { class: "cron-content" };
|
|
165042
|
+
const _hoisted_2$j = { class: "cron-item" };
|
|
165048
165043
|
const _hoisted_3$b = { class: "cron-item" };
|
|
165049
165044
|
const _hoisted_4$6 = { class: "cron-item" };
|
|
165050
165045
|
const _hoisted_5$3 = { class: "cron-item" };
|
|
@@ -165172,8 +165167,8 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
|
165172
165167
|
const _component_el_input_number = ElInputNumber;
|
|
165173
165168
|
const _component_el_checkbox = ElCheckbox;
|
|
165174
165169
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
165175
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
165176
|
-
createElementVNode("div", _hoisted_2$
|
|
165170
|
+
return openBlock(), createElementBlock("div", _hoisted_1$p, [
|
|
165171
|
+
createElementVNode("div", _hoisted_2$j, [
|
|
165177
165172
|
createVNode(_component_el_radio, {
|
|
165178
165173
|
size: "small",
|
|
165179
165174
|
modelValue: unref(radioValue),
|
|
@@ -165349,8 +165344,8 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
|
165349
165344
|
}
|
|
165350
165345
|
});
|
|
165351
165346
|
|
|
165352
|
-
const _hoisted_1$
|
|
165353
|
-
const _hoisted_2$
|
|
165347
|
+
const _hoisted_1$o = { class: "cron-content" };
|
|
165348
|
+
const _hoisted_2$i = { class: "cron-item" };
|
|
165354
165349
|
const _hoisted_3$a = { class: "cron-item" };
|
|
165355
165350
|
const _hoisted_4$5 = { class: "cron-item" };
|
|
165356
165351
|
const _hoisted_5$2 = { class: "cron-item" };
|
|
@@ -165447,8 +165442,8 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
|
165447
165442
|
const _component_el_input_number = ElInputNumber;
|
|
165448
165443
|
const _component_el_checkbox = ElCheckbox;
|
|
165449
165444
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
165450
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
165451
|
-
createElementVNode("div", _hoisted_2$
|
|
165445
|
+
return openBlock(), createElementBlock("div", _hoisted_1$o, [
|
|
165446
|
+
createElementVNode("div", _hoisted_2$i, [
|
|
165452
165447
|
createVNode(_component_el_radio, {
|
|
165453
165448
|
size: "small",
|
|
165454
165449
|
modelValue: unref(radioValue),
|
|
@@ -165569,8 +165564,8 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
|
165569
165564
|
}
|
|
165570
165565
|
});
|
|
165571
165566
|
|
|
165572
|
-
const _hoisted_1$
|
|
165573
|
-
const _hoisted_2$
|
|
165567
|
+
const _hoisted_1$n = { class: "cron-content" };
|
|
165568
|
+
const _hoisted_2$h = { class: "cron-item" };
|
|
165574
165569
|
const _hoisted_3$9 = { class: "cron-item" };
|
|
165575
165570
|
const _hoisted_4$4 = { class: "cron-item" };
|
|
165576
165571
|
const _hoisted_5$1 = { class: "cron-item" };
|
|
@@ -165692,8 +165687,8 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
|
165692
165687
|
const _component_el_input_number = ElInputNumber;
|
|
165693
165688
|
const _component_el_checkbox = ElCheckbox;
|
|
165694
165689
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
165695
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
165696
|
-
createElementVNode("div", _hoisted_2$
|
|
165690
|
+
return openBlock(), createElementBlock("div", _hoisted_1$n, [
|
|
165691
|
+
createElementVNode("div", _hoisted_2$h, [
|
|
165697
165692
|
createVNode(_component_el_radio, {
|
|
165698
165693
|
size: "small",
|
|
165699
165694
|
modelValue: unref(radioValue),
|
|
@@ -165851,8 +165846,8 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
|
165851
165846
|
}
|
|
165852
165847
|
});
|
|
165853
165848
|
|
|
165854
|
-
const _hoisted_1$
|
|
165855
|
-
const _hoisted_2$
|
|
165849
|
+
const _hoisted_1$m = { class: "cron-content" };
|
|
165850
|
+
const _hoisted_2$g = { class: "cron-item" };
|
|
165856
165851
|
const _hoisted_3$8 = { class: "cron-item" };
|
|
165857
165852
|
const _hoisted_4$3 = { class: "cron-item" };
|
|
165858
165853
|
const _hoisted_5 = { class: "cron-item" };
|
|
@@ -165957,8 +165952,8 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
|
165957
165952
|
const _component_el_input_number = ElInputNumber;
|
|
165958
165953
|
const _component_el_checkbox = ElCheckbox;
|
|
165959
165954
|
const _component_el_checkbox_group = ElCheckboxGroup$1;
|
|
165960
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
165961
|
-
createElementVNode("div", _hoisted_2$
|
|
165955
|
+
return openBlock(), createElementBlock("div", _hoisted_1$m, [
|
|
165956
|
+
createElementVNode("div", _hoisted_2$g, [
|
|
165962
165957
|
createVNode(_component_el_radio, {
|
|
165963
165958
|
size: "small",
|
|
165964
165959
|
label: 1,
|
|
@@ -166089,8 +166084,8 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
|
166089
166084
|
}
|
|
166090
166085
|
});
|
|
166091
166086
|
|
|
166092
|
-
const _hoisted_1$
|
|
166093
|
-
const _hoisted_2$
|
|
166087
|
+
const _hoisted_1$l = { class: "flex flex-col h-full" };
|
|
166088
|
+
const _hoisted_2$f = { class: "flex-grow-1 flex-1 overflow-auto min-h-0" };
|
|
166094
166089
|
const _hoisted_3$7 = { class: "popup-main" };
|
|
166095
166090
|
const _hoisted_4$2 = { class: "popup-result" };
|
|
166096
166091
|
const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
@@ -166329,8 +166324,8 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
|
166329
166324
|
const _component_el_tabs = ElTabs;
|
|
166330
166325
|
const _component_el_tag = ElTag;
|
|
166331
166326
|
const _component_CrontabResult = __unplugin_components_3;
|
|
166332
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
166333
|
-
createElementVNode("div", _hoisted_2$
|
|
166327
|
+
return openBlock(), createElementBlock("div", _hoisted_1$l, [
|
|
166328
|
+
createElementVNode("div", _hoisted_2$f, [
|
|
166334
166329
|
createVNode(_component_el_tabs, {
|
|
166335
166330
|
type: "border-card",
|
|
166336
166331
|
modelValue: unref(tabActive),
|
|
@@ -166861,6 +166856,8 @@ const departItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty
|
|
|
166861
166856
|
default: _sfc_main$R
|
|
166862
166857
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
166863
166858
|
|
|
166859
|
+
const _hoisted_1$k = { class: "search-content" };
|
|
166860
|
+
const _hoisted_2$e = { class: "search_btn" };
|
|
166864
166861
|
const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
166865
166862
|
__name: "dialog-input-item",
|
|
166866
166863
|
props: /* @__PURE__ */ mergeModels({
|
|
@@ -166907,7 +166904,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
166907
166904
|
};
|
|
166908
166905
|
const selectItem = (row) => {
|
|
166909
166906
|
let data = "";
|
|
166910
|
-
let needField = props.field.
|
|
166907
|
+
let needField = props.field.preps?.needField;
|
|
166911
166908
|
if (!row || !isJson(row)) {
|
|
166912
166909
|
let selectDatas = dialogInputTableRef.value.multipleSelection;
|
|
166913
166910
|
if (!selectDatas) {
|
|
@@ -166930,8 +166927,8 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
166930
166927
|
}
|
|
166931
166928
|
});
|
|
166932
166929
|
}
|
|
166933
|
-
if (props.field.
|
|
166934
|
-
props.field.
|
|
166930
|
+
if (props.field.preps?.recall) {
|
|
166931
|
+
props.field.preps?.["recall"](row);
|
|
166935
166932
|
}
|
|
166936
166933
|
closeAction();
|
|
166937
166934
|
};
|
|
@@ -166941,7 +166938,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
166941
166938
|
const showVisible = () => {
|
|
166942
166939
|
dialogInputVisible.value = true;
|
|
166943
166940
|
nextTick(() => {
|
|
166944
|
-
let fields = props.field.
|
|
166941
|
+
let fields = props.field.preps?.needField;
|
|
166945
166942
|
let name = props.field.fieldName;
|
|
166946
166943
|
let realName = name;
|
|
166947
166944
|
if (props.field.aliasName) {
|
|
@@ -166953,8 +166950,9 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
166953
166950
|
dialogInputTableRef.value?.setDataInfo(name, formData.value[realName]);
|
|
166954
166951
|
});
|
|
166955
166952
|
};
|
|
166956
|
-
onMounted(() => {
|
|
166957
|
-
|
|
166953
|
+
onMounted(async () => {
|
|
166954
|
+
await nextTick();
|
|
166955
|
+
let inputPreps = props.field?.preps;
|
|
166958
166956
|
if (!inputPreps) {
|
|
166959
166957
|
warning("属性" + props.field?.label + "需要配置params 信息");
|
|
166960
166958
|
return;
|
|
@@ -166986,6 +166984,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
166986
166984
|
return (_ctx, _cache) => {
|
|
166987
166985
|
const _component_star_horse_search_comp = __unplugin_components_0$4;
|
|
166988
166986
|
const _component_star_horse_table_comp = __unplugin_components_1$1;
|
|
166987
|
+
const _component_el_card = ElCard;
|
|
166989
166988
|
const _component_star_horse_dialog = __unplugin_components_0$9;
|
|
166990
166989
|
const _component_el_button = ElButton;
|
|
166991
166990
|
const _component_el_input = ElInput;
|
|
@@ -166999,28 +166998,37 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
166999
166998
|
onCloseAction: closeAction
|
|
167000
166999
|
}, {
|
|
167001
167000
|
default: withCtx(() => [
|
|
167002
|
-
createVNode(
|
|
167003
|
-
|
|
167004
|
-
|
|
167005
|
-
|
|
167006
|
-
|
|
167007
|
-
|
|
167008
|
-
|
|
167009
|
-
|
|
167010
|
-
|
|
167011
|
-
|
|
167012
|
-
|
|
167013
|
-
|
|
167014
|
-
|
|
167015
|
-
|
|
167016
|
-
|
|
167017
|
-
|
|
167018
|
-
|
|
167019
|
-
|
|
167020
|
-
|
|
167021
|
-
|
|
167022
|
-
|
|
167023
|
-
|
|
167001
|
+
createVNode(_component_el_card, { class: "inner_content" }, {
|
|
167002
|
+
default: withCtx(() => [
|
|
167003
|
+
createElementVNode("div", _hoisted_1$k, [
|
|
167004
|
+
createElementVNode("div", _hoisted_2$e, [
|
|
167005
|
+
createVNode(_component_star_horse_search_comp, {
|
|
167006
|
+
onSearchData: _cache[0] || (_cache[0] = (data) => dialogInputTableRef.value.createSearchParams(data)),
|
|
167007
|
+
formData: __props.field.preps?.["searchFieldList"],
|
|
167008
|
+
compUrl: __props.field.preps?.["dataUrl"]
|
|
167009
|
+
}, null, 8, ["formData", "compUrl"])
|
|
167010
|
+
])
|
|
167011
|
+
]),
|
|
167012
|
+
createVNode(_component_star_horse_table_comp, {
|
|
167013
|
+
fieldList: {
|
|
167014
|
+
cellEditable: false,
|
|
167015
|
+
fieldList: __props.field.preps?.["fieldList"]
|
|
167016
|
+
},
|
|
167017
|
+
primaryKey: __props.field.preps?.["primaryKey"],
|
|
167018
|
+
compUrl: __props.field.preps?.["dataUrl"],
|
|
167019
|
+
ref_key: "dialogInputTableRef",
|
|
167020
|
+
ref: dialogInputTableRef,
|
|
167021
|
+
dialogInput: true,
|
|
167022
|
+
height: "400px",
|
|
167023
|
+
filterCondition: __props.field.preps?.["filterCondition"],
|
|
167024
|
+
orderBy: __props.field.preps?.["orderBy"],
|
|
167025
|
+
onSelectItem: selectItem,
|
|
167026
|
+
dataFormat: __props.field.preps?.["dataFormat"],
|
|
167027
|
+
disableAction: true
|
|
167028
|
+
}, null, 8, ["fieldList", "primaryKey", "compUrl", "filterCondition", "orderBy", "dataFormat"])
|
|
167029
|
+
]),
|
|
167030
|
+
_: 1
|
|
167031
|
+
})
|
|
167024
167032
|
]),
|
|
167025
167033
|
_: 1
|
|
167026
167034
|
}, 8, ["title", "dialog-visible"]),
|
|
@@ -167064,7 +167072,7 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
167064
167072
|
|
|
167065
167073
|
/* unplugin-vue-components disabled */
|
|
167066
167074
|
|
|
167067
|
-
const dialogInputItem = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-
|
|
167075
|
+
const dialogInputItem = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-e4d0752f"]]);
|
|
167068
167076
|
|
|
167069
167077
|
const dialogInputItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
167070
167078
|
__proto__: null,
|
|
@@ -184459,12 +184467,6 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
184459
184467
|
}
|
|
184460
184468
|
};
|
|
184461
184469
|
const itemAction = (prep) => {
|
|
184462
|
-
if (prep == actionName.value && props.field?.actionRelation) {
|
|
184463
|
-
props.field?.actionRelation(
|
|
184464
|
-
formData.value[props.field.fieldName],
|
|
184465
|
-
formData.value["xh"]
|
|
184466
|
-
);
|
|
184467
|
-
}
|
|
184468
184470
|
emits("selfFunc", prep, formData.value);
|
|
184469
184471
|
};
|
|
184470
184472
|
const init = async () => {
|
|
@@ -184586,7 +184588,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
184586
184588
|
|
|
184587
184589
|
/* unplugin-vue-components disabled */
|
|
184588
184590
|
|
|
184589
|
-
const iconItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-
|
|
184591
|
+
const iconItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-c5ceb77a"]]);
|
|
184590
184592
|
|
|
184591
184593
|
const iconItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
184592
184594
|
__proto__: null,
|
|
@@ -185818,7 +185820,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185818
185820
|
if (orderBy.value?.length > 0) {
|
|
185819
185821
|
orderByTemp = orderBy.value;
|
|
185820
185822
|
}
|
|
185821
|
-
if (!props.field.
|
|
185823
|
+
if (!props.field.preps?.["dataUrl"]?.pageListUrl) {
|
|
185822
185824
|
return;
|
|
185823
185825
|
}
|
|
185824
185826
|
let params = {
|
|
@@ -185827,16 +185829,16 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185827
185829
|
fieldList: searchData.value,
|
|
185828
185830
|
orderBy: orderByTemp
|
|
185829
185831
|
};
|
|
185830
|
-
let url = props.field.
|
|
185831
|
-
if (props.field.
|
|
185832
|
+
let url = props.field.preps?.dataUrl?.pageListUrl;
|
|
185833
|
+
if (props.field.preps?.dataUrl.redirect) {
|
|
185832
185834
|
params = {
|
|
185833
185835
|
url,
|
|
185834
|
-
host: props.field.
|
|
185835
|
-
port: props.field.
|
|
185836
|
-
protocol: props.field.
|
|
185837
|
-
env: props.field.
|
|
185838
|
-
httpMethod: props.field.
|
|
185839
|
-
dataType: props.field.
|
|
185836
|
+
host: props.field.preps?.dataUrl?.host,
|
|
185837
|
+
port: props.field.preps?.dataUrl?.port,
|
|
185838
|
+
protocol: props.field.preps?.dataUrl?.protocol,
|
|
185839
|
+
env: props.field.preps?.dataUrl?.env,
|
|
185840
|
+
httpMethod: props.field.preps?.dataUrl?.httpMethod || "POST",
|
|
185841
|
+
dataType: props.field.preps?.dataUrl?.dataType || "JSON",
|
|
185840
185842
|
searchInfo: params
|
|
185841
185843
|
};
|
|
185842
185844
|
url = "/system-config/redirect/pageList";
|
|
@@ -185861,7 +185863,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185861
185863
|
loadByPage();
|
|
185862
185864
|
};
|
|
185863
185865
|
const getRowIdentity = (row) => {
|
|
185864
|
-
return row[props.field.
|
|
185866
|
+
return row[props.field.preps?.primaryKey];
|
|
185865
185867
|
};
|
|
185866
185868
|
const handleSelectionChange = (val) => {
|
|
185867
185869
|
multipleSelection.value = val;
|
|
@@ -185869,7 +185871,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185869
185871
|
};
|
|
185870
185872
|
const selectRow = (row, _column, _evt) => {
|
|
185871
185873
|
const selected = multipleSelection.value.some(
|
|
185872
|
-
(item) => item[props.field.
|
|
185874
|
+
(item) => item[props.field.preps?.primaryKey] === row[props.field.preps?.primaryKey]
|
|
185873
185875
|
);
|
|
185874
185876
|
if (!selected) {
|
|
185875
185877
|
multipleSelection.value.push(row);
|
|
@@ -185880,12 +185882,12 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185880
185882
|
assignVal();
|
|
185881
185883
|
};
|
|
185882
185884
|
const loadSourceField = (aliasFirst = true) => {
|
|
185883
|
-
let fields = props.field.
|
|
185884
|
-
let name = aliasFirst ? props.field.
|
|
185885
|
+
let fields = props.field.preps?.["needField"];
|
|
185886
|
+
let name = aliasFirst ? props.field.preps?.["aliasName"] || props.field.fieldName : props.field.fieldName;
|
|
185885
185887
|
return fields?.find((temp) => temp.distField == name)?.sourceField || "";
|
|
185886
185888
|
};
|
|
185887
185889
|
const assignVal = () => {
|
|
185888
|
-
let fields = props.field.
|
|
185890
|
+
let fields = props.field.preps?.["needField"];
|
|
185889
185891
|
let name = props.field.fieldName;
|
|
185890
185892
|
if (fields) {
|
|
185891
185893
|
fields.forEach((temp) => {
|
|
@@ -185902,18 +185904,19 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185902
185904
|
} else {
|
|
185903
185905
|
formData.value[name] = multipleSelection.value.map((item) => item[name]);
|
|
185904
185906
|
}
|
|
185905
|
-
if (props.field.
|
|
185906
|
-
props.field.
|
|
185907
|
+
if (props.field.preps?.["recall"]) {
|
|
185908
|
+
props.field.preps?.["recall"](multipleSelection.value);
|
|
185907
185909
|
}
|
|
185908
185910
|
};
|
|
185909
185911
|
watch(
|
|
185910
|
-
() => props.field.
|
|
185912
|
+
() => props.field.preps?.["dataUrl"],
|
|
185911
185913
|
() => {
|
|
185912
185914
|
loadByPage();
|
|
185913
185915
|
}
|
|
185914
185916
|
);
|
|
185915
|
-
onMounted(() => {
|
|
185916
|
-
|
|
185917
|
+
onMounted(async () => {
|
|
185918
|
+
await nextTick();
|
|
185919
|
+
let inputPreps = props.field?.preps;
|
|
185917
185920
|
if (!inputPreps) {
|
|
185918
185921
|
warning("属性" + props.field?.label + "需要配置params 信息");
|
|
185919
185922
|
return;
|
|
@@ -185979,10 +185982,10 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
185979
185982
|
}, {
|
|
185980
185983
|
default: withCtx(() => [
|
|
185981
185984
|
createVNode(_component_star_horse_search_comp, {
|
|
185982
|
-
formData: __props.field.
|
|
185985
|
+
formData: __props.field.preps?.["searchFieldList"],
|
|
185983
185986
|
onSearchData: _cache[0] || (_cache[0] = (data) => searchDataFun(data)),
|
|
185984
185987
|
mutComp: true,
|
|
185985
|
-
compUrl: __props.field.
|
|
185988
|
+
compUrl: __props.field.preps?.["dataUrl"]
|
|
185986
185989
|
}, null, 8, ["formData", "compUrl"]),
|
|
185987
185990
|
createVNode(_component_el_table, {
|
|
185988
185991
|
ref_key: "starHorseTableCompRef",
|
|
@@ -186011,23 +186014,23 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
186011
186014
|
fixed: "left",
|
|
186012
186015
|
"reserve-selection": true
|
|
186013
186016
|
}),
|
|
186014
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.field.
|
|
186017
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.field.preps?.fieldList, (item, key) => {
|
|
186015
186018
|
return openBlock(), createElementBlock(Fragment, {
|
|
186016
186019
|
key: unref(compKey)(item, key)
|
|
186017
186020
|
}, [
|
|
186018
186021
|
Array.isArray(item) ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(item, (sitem, skey) => {
|
|
186019
186022
|
return openBlock(), createBlock(_component_star_horse_table_column, {
|
|
186020
186023
|
key: unref(compKey)(sitem, skey),
|
|
186021
|
-
compUrl: __props.field.
|
|
186024
|
+
compUrl: __props.field.preps?.["dataUrl"],
|
|
186022
186025
|
cellEditable: false,
|
|
186023
|
-
"data-format": __props.field.
|
|
186026
|
+
"data-format": __props.field.preps?.["dataFormat"],
|
|
186024
186027
|
item: sitem
|
|
186025
186028
|
}, null, 8, ["compUrl", "data-format", "item"]);
|
|
186026
186029
|
}), 128)) : (openBlock(), createBlock(_component_star_horse_table_column, {
|
|
186027
186030
|
key: 1,
|
|
186028
|
-
compUrl: __props.field.
|
|
186031
|
+
compUrl: __props.field.preps?.["dataUrl"],
|
|
186029
186032
|
cellEditable: false,
|
|
186030
|
-
"data-format": __props.field.
|
|
186033
|
+
"data-format": __props.field.preps?.["dataFormat"],
|
|
186031
186034
|
item
|
|
186032
186035
|
}, null, 8, ["compUrl", "data-format", "item"]))
|
|
186033
186036
|
], 64);
|
|
@@ -186065,7 +186068,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
186065
186068
|
|
|
186066
186069
|
/* unplugin-vue-components disabled */
|
|
186067
186070
|
|
|
186068
|
-
const pageSelectItem = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-
|
|
186071
|
+
const pageSelectItem = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__scopeId", "data-v-e0c75f8e"]]);
|
|
186069
186072
|
|
|
186070
186073
|
const pageSelectItem$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
186071
186074
|
__proto__: null,
|
|
@@ -188311,21 +188314,12 @@ const userItem = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
|
188311
188314
|
default: _sfc_main$l
|
|
188312
188315
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
188313
188316
|
|
|
188314
|
-
const __variableDynamicImportRuntimeHelper = (glob, path, segs) => {
|
|
188315
|
-
|
|
188316
|
-
|
|
188317
|
-
|
|
188318
|
-
|
|
188319
|
-
|
|
188320
|
-
(typeof queueMicrotask === "function" ? queueMicrotask : setTimeout)(
|
|
188321
|
-
reject.bind(
|
|
188322
|
-
null,
|
|
188323
|
-
new Error(
|
|
188324
|
-
"Unknown variable dynamic import: " + path + (path.split("/").length !== segs ? ". Note that variables only represent file names one level deep." : "")
|
|
188325
|
-
)
|
|
188326
|
-
)
|
|
188327
|
-
);
|
|
188328
|
-
});
|
|
188317
|
+
const __variableDynamicImportRuntimeHelper = (glob$1, path$13, segs) => {
|
|
188318
|
+
const v = glob$1[path$13];
|
|
188319
|
+
if (v) return typeof v === "function" ? v() : Promise.resolve(v);
|
|
188320
|
+
return new Promise((_, reject) => {
|
|
188321
|
+
(typeof queueMicrotask === "function" ? queueMicrotask : setTimeout)(reject.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + path$13 + (path$13.split("/").length !== segs ? ". Note that variables only represent file names one level deep." : ""))));
|
|
188322
|
+
});
|
|
188329
188323
|
};
|
|
188330
188324
|
|
|
188331
188325
|
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
@@ -200601,4 +200595,4 @@ const stringStylesDT93GIY_ = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defi
|
|
|
200601
200595
|
fullWidthButton: e
|
|
200602
200596
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
200603
200597
|
|
|
200604
|
-
export { __unplugin_components_5 as ContentMenu, DEFAULT_INITIAL_Z_INDEX, _sfc_main$1O as ShDynamicForm, ShForm, _sfc_main$1L as ShTableListColumn, __unplugin_components_2 as StarHorseButtonList, StarHorseDataSelector, StarHorseDataView, __unplugin_components_0$7 as StarHorseDataViewItems, __unplugin_components_2$2 as StarHorseDataViewTable, __unplugin_components_0$9 as StarHorseDialog, StarHorseDraggable, __unplugin_components_1$2 as StarHorseForm, _sfc_main$1v as StarHorseFormItem, __unplugin_components_0$6 as StarHorseFormList, _sfc_main$1x as StarHorseFormTable, StarHorseHmenu, __unplugin_components_0$b as StarHorseIcon, __unplugin_components_0$5 as StarHorseJsonEditor, _sfc_main$1s as StarHorsePopover, __unplugin_components_0$4 as StarHorseSearchComp, StarHorseStaticTable, StarHorseSvg, __unplugin_components_2$1 as StarHorseTableColumn, __unplugin_components_1$1 as StarHorseTableComp, _sfc_main$1G as StarHorseTableViewColumn, StarHorseTree, apiInstance, areaItem, _sfc_main$16 as audioItem, _sfc_main$15 as autocompleteItem, _sfc_main$h as barcodeItem, batchFieldDefaultValues, batchModifyAction, blobData, boxContainer, buttonItem, camelCaseToUnderline, cardContainer, cascadeItem, _sfc_main$12 as checkboxItem, closeLoad, collapseContainer, _sfc_main$11 as colorItem, commonParseCodeToName, compDynamicData, compKey, convertToCamelCase, copy$1 as copy, copyText, createComponent, createCondition, createDate, createDatetime, createFilter, createTree, cronItem, currentDate, currentMonthRange, dateParse, dateTypes, datetimeItem, index as default, deleteByIds, _sfc_main$R as departItem, dialogInputItem, dialogPreps, dictData, _sfc_main$P as dividerItem, download, downloadData, dynamicUrlOperation, dytableContainer, error$1 as error, formFieldMapping, generateDeviceId, getFingerId, getMenuId, getRequest, htmlItem, _sfc_main$N as htmleditorItem, httpRequest, iconItem, imageItem, inputItem, isDark, isJson, isPromise, _sfc_main$H as jsonArrayItem, _sfc_main$G as jsonItem, load, loadById, loadData, loadGetData, markdownItem, message, monthRange, numberItem, numberRangeItem, operationConfirm, pageSelectItem, parseDateByType, _sfc_main$B as passwordItem, piniaInstance, postRequest, _sfc_main$i as qrcodeItem, _sfc_main$A as radioItem, _sfc_main$z as rateItem, removeEmptyCondition, rowClassName, searchData, searchMatchList, selectItem, signatureItem, _sfc_main$w as sliderItem, success, _sfc_main$v as switchItem, tabContainer, tableContainer, _sfc_main$u as tagItem, textItem, textToPinYin, _sfc_main$s as textareaItem, timeItem, timePickerItem, toggle, _sfc_main$p as transferItem, trim, _sfc_main$o as tselectItem, _sfc_main$n as unknownItem, uploadItem, uploadRequest, useButtonPermissionStore, useConsumerViewStore, useContinusConfigStore, useCopyerOperationStore, useDesignFormStore, useDesignPageStore, useDynamicFormStore, useGlobalConfigStore, useSelfOperationStore, useUserInfoStore, useZIndex, userAction, userFunction, _sfc_main$l as userItem, _sfc_main$k as usercompItem, uuid, viewMarkdownItem, warning };
|
|
200598
|
+
export { __unplugin_components_5 as ContentMenu, DEFAULT_INITIAL_Z_INDEX, _sfc_main$1O as ShDynamicForm, ShForm, _sfc_main$1L as ShTableListColumn, __unplugin_components_2 as StarHorseButtonList, StarHorseDataSelector, StarHorseDataView, __unplugin_components_0$7 as StarHorseDataViewItems, __unplugin_components_2$2 as StarHorseDataViewTable, __unplugin_components_0$9 as StarHorseDialog, StarHorseDraggable, __unplugin_components_1$2 as StarHorseForm, _sfc_main$1v as StarHorseFormItem, __unplugin_components_0$6 as StarHorseFormList, _sfc_main$1x as StarHorseFormTable, StarHorseHmenu, __unplugin_components_0$b as StarHorseIcon, __unplugin_components_0$5 as StarHorseJsonEditor, _sfc_main$1s as StarHorsePopover, __unplugin_components_0$4 as StarHorseSearchComp, StarHorseStaticTable, StarHorseSvg, __unplugin_components_2$1 as StarHorseTableColumn, __unplugin_components_1$1 as StarHorseTableComp, _sfc_main$1G as StarHorseTableViewColumn, StarHorseTree, apiInstance, areaItem, _sfc_main$16 as audioItem, _sfc_main$15 as autocompleteItem, _sfc_main$h as barcodeItem, batchFieldDefaultValues, batchModifyAction, blobData, boxContainer, buttonItem, camelCaseToUnderline, cardContainer, cascadeItem, _sfc_main$12 as checkboxItem, closeLoad, collapseContainer, _sfc_main$11 as colorItem, commonParseCodeToName, compDynamicData, compKey, convertToCamelCase, copy$1 as copy, copyText, createComponent, createCondition, createDate, createDatetime, createFilter, createTree, cronItem, currentDate, currentMonthRange, dateParse, dateTypes, datetimeItem, index as default, deleteByIds, _sfc_main$R as departItem, dialogInputItem, dialogPreps, dictData, _sfc_main$P as dividerItem, download, downloadData, dynamicUrlOperation, dytableContainer, error$1 as error, fieldPlaceholder, formFieldMapping, generateDeviceId, getFingerId, getMenuId, getRequest, htmlItem, _sfc_main$N as htmleditorItem, httpRequest, iconItem, imageItem, inputItem, isDark, isJson, isPromise, itemCheck, _sfc_main$H as jsonArrayItem, _sfc_main$G as jsonItem, load, loadById, loadData, loadGetData, markdownItem, message, monthRange, numberItem, numberRangeItem, operationConfirm, pageSelectItem, parseDateByType, _sfc_main$B as passwordItem, piniaInstance, postRequest, _sfc_main$i as qrcodeItem, _sfc_main$A as radioItem, _sfc_main$z as rateItem, removeEmptyCondition, rowClassName, searchData, searchMatchList, selectItem, signatureItem, _sfc_main$w as sliderItem, success, _sfc_main$v as switchItem, tabContainer, tableContainer, _sfc_main$u as tagItem, textItem, textToPinYin, _sfc_main$s as textareaItem, timeItem, timePickerItem, toggle, _sfc_main$p as transferItem, trim, _sfc_main$o as tselectItem, _sfc_main$n as unknownItem, uploadItem, uploadRequest, useButtonPermissionStore, useConsumerViewStore, useContinusConfigStore, useCopyerOperationStore, useDesignFormStore, useDesignPageStore, useDynamicFormStore, useGlobalConfigStore, useSelfOperationStore, useUserInfoStore, useZIndex, userAction, userFunction, _sfc_main$l as userItem, _sfc_main$k as usercompItem, uuid, viewMarkdownItem, warning };
|