@fecp/designer 5.4.99 → 5.4.101
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/es/designer/package.json.mjs +1 -1
- package/es/designer/src/components/DocumentParam.vue.mjs +1 -1
- package/es/designer/src/components/FilterConfigDisplay.vue.mjs +11 -12
- package/es/designer/src/components/ParamsConfig.vue2.mjs +1 -1
- package/es/designer/src/layout/aside/HiddenFieldDialog.vue.mjs +1 -1
- package/es/designer/src/packages/advancedFilter/AdvancedFilter.vue2.mjs +9 -9
- package/es/designer/src/packages/advancedFilter/Trigger.vue2.mjs +5 -5
- package/es/designer/src/packages/advancedFilter/ValueInput.vue2.mjs +1 -1
- package/es/designer/src/packages/dataLinkage/index.vue.mjs +15 -15
- package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/approvalHistory.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/contract.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/subForm.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/es/designer/src/packages/prod/index.vue.mjs +1 -1
- package/es/designer/src/packages/table/headerBtn.vue.mjs +1 -1
- package/es/designer.css +47 -47
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/components/DocumentParam.vue.js +1 -1
- package/lib/designer/src/components/FilterConfigDisplay.vue.js +11 -12
- package/lib/designer/src/components/ParamsConfig.vue2.js +1 -1
- package/lib/designer/src/layout/aside/HiddenFieldDialog.vue.js +1 -1
- package/lib/designer/src/packages/advancedFilter/AdvancedFilter.vue2.js +9 -9
- package/lib/designer/src/packages/advancedFilter/Trigger.vue2.js +5 -5
- package/lib/designer/src/packages/advancedFilter/ValueInput.vue2.js +1 -1
- package/lib/designer/src/packages/dataLinkage/index.vue.js +15 -15
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.js +1 -1
- package/lib/designer/src/packages/form/property/approvalHistory.vue.js +1 -1
- package/lib/designer/src/packages/form/property/contract.vue.js +1 -1
- package/lib/designer/src/packages/form/property/subForm.vue.js +1 -1
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/lib/designer/src/packages/prod/index.vue.js +1 -1
- package/lib/designer/src/packages/table/headerBtn.vue.js +1 -1
- package/lib/designer.css +47 -47
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ import "../../../node_modules/element-plus/es/index.mjs";
|
|
|
9
9
|
/* empty css */
|
|
10
10
|
import { computed, ref, createElementBlock, openBlock, createBlock, unref, withCtx, createTextVNode, createElementVNode, Fragment, renderList, createVNode } from "vue";
|
|
11
11
|
import { Plus as plus_default, Delete as delete_default } from "../../../node_modules/@element-plus/icons-vue/dist/index.mjs";
|
|
12
|
-
import ValueSelector from "./ValueSelector.
|
|
12
|
+
import ValueSelector from "./ValueSelector.vue.mjs";
|
|
13
13
|
import api from "../api/index.mjs";
|
|
14
14
|
/* empty css */
|
|
15
15
|
import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
@@ -44,7 +44,7 @@ const _sfc_main = {
|
|
|
44
44
|
if ((_c = config.conditions) == null ? void 0 : _c.length) {
|
|
45
45
|
config.conditions.forEach((condition) => {
|
|
46
46
|
if (!firstCondition) {
|
|
47
|
-
const connector = config.operator
|
|
47
|
+
const connector = config.operator == "or" ? "或" : "且";
|
|
48
48
|
parts.push(h("span", { class: "condition-connector-tag" }, connector));
|
|
49
49
|
}
|
|
50
50
|
parts.push(...formatConditionStyled(condition));
|
|
@@ -54,7 +54,7 @@ const _sfc_main = {
|
|
|
54
54
|
if ((_d = config.groups) == null ? void 0 : _d.length) {
|
|
55
55
|
config.groups.forEach((group) => {
|
|
56
56
|
if (!firstCondition) {
|
|
57
|
-
const connector = config.operator
|
|
57
|
+
const connector = config.operator == "or" ? "或" : "且";
|
|
58
58
|
parts.push(h("span", { class: "condition-connector-tag" }, connector));
|
|
59
59
|
}
|
|
60
60
|
parts.push(
|
|
@@ -73,9 +73,8 @@ const _sfc_main = {
|
|
|
73
73
|
parts.push(h("span", { class: "field-value" }, `「${fieldName}」`));
|
|
74
74
|
const operator = operatorMap[condition.operator] || condition.operator;
|
|
75
75
|
parts.push(h("span", { class: "operator-text" }, operator));
|
|
76
|
-
debugger;
|
|
77
76
|
let value = "";
|
|
78
|
-
if (condition.operator
|
|
77
|
+
if (condition.operator == "is_null" || condition.operator == "is_not_null") {
|
|
79
78
|
value = "";
|
|
80
79
|
} else if (condition.isField) {
|
|
81
80
|
if (Array.isArray(condition.value)) {
|
|
@@ -102,33 +101,33 @@ const _sfc_main = {
|
|
|
102
101
|
return (editConfigData == null ? void 0 : editConfigData.hiddenFields) || [];
|
|
103
102
|
});
|
|
104
103
|
function getFieldLabel(fieldId) {
|
|
105
|
-
if (fieldId && typeof fieldId
|
|
104
|
+
if (fieldId && typeof fieldId == "object" && !Array.isArray(fieldId)) {
|
|
106
105
|
return fieldId.label || fieldId.value;
|
|
107
106
|
}
|
|
108
|
-
let field = fieldsData.value.find((f) => f.id
|
|
107
|
+
let field = fieldsData.value.find((f) => f.id == fieldId);
|
|
109
108
|
if (field) {
|
|
110
109
|
return field.label;
|
|
111
110
|
}
|
|
112
|
-
field = hiddenFieldsData.value.find((f) => f.id
|
|
111
|
+
field = hiddenFieldsData.value.find((f) => f.id == fieldId);
|
|
113
112
|
if (field) {
|
|
114
113
|
return field.label;
|
|
115
114
|
}
|
|
116
115
|
return fieldId;
|
|
117
116
|
}
|
|
118
117
|
const formatValue = (value, operator) => {
|
|
119
|
-
if (value
|
|
118
|
+
if (value == null || value == void 0) {
|
|
120
119
|
return "";
|
|
121
120
|
}
|
|
122
|
-
if (operator
|
|
121
|
+
if (operator == "range" && Array.isArray(value) && value.length == 2) {
|
|
123
122
|
return `${value[0]} ~ ${value[1]}`;
|
|
124
123
|
}
|
|
125
|
-
if ((operator
|
|
124
|
+
if ((operator == "in_any" || operator == "ni_any") && Array.isArray(value)) {
|
|
126
125
|
return value.join(", ");
|
|
127
126
|
}
|
|
128
127
|
if (Array.isArray(value)) {
|
|
129
128
|
return value.join(", ");
|
|
130
129
|
}
|
|
131
|
-
if (typeof value
|
|
130
|
+
if (typeof value == "string" && value.length > 20) {
|
|
132
131
|
return value.substring(0, 20) + "...";
|
|
133
132
|
}
|
|
134
133
|
return String(value);
|
|
@@ -140,7 +139,7 @@ const _sfc_main = {
|
|
|
140
139
|
};
|
|
141
140
|
}
|
|
142
141
|
};
|
|
143
|
-
const FilterConfigDisplay = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
142
|
+
const FilterConfigDisplay = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f50128c9"]]);
|
|
144
143
|
export {
|
|
145
144
|
FilterConfigDisplay as default
|
|
146
145
|
};
|
|
@@ -4,7 +4,7 @@ import "../../../node_modules/element-plus/es/index.mjs";
|
|
|
4
4
|
/* empty css */
|
|
5
5
|
import { computed, createElementBlock, openBlock, createBlock, unref, withCtx, createTextVNode, createElementVNode, Fragment, renderList, createVNode } from "vue";
|
|
6
6
|
import { Plus as plus_default, Delete as delete_default } from "../../../node_modules/@element-plus/icons-vue/dist/index.mjs";
|
|
7
|
-
import ValueSelector from "./ValueSelector.
|
|
7
|
+
import ValueSelector from "./ValueSelector.vue.mjs";
|
|
8
8
|
/* empty css */
|
|
9
9
|
import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
10
10
|
import { ElButton } from "../../../node_modules/element-plus/es/components/button/index.mjs";
|
|
@@ -16,7 +16,7 @@ import { Plus as plus_default, RefreshRight as refresh_right_default, Delete as
|
|
|
16
16
|
import { getEditConfigData, getEditingType, cloneDeep, getEditConfigDataFields } from "../../packages/utils/common.mjs";
|
|
17
17
|
import { defaultProperty } from "../../packages/form/aside/index.mjs";
|
|
18
18
|
import { defaultProperty as defaultProperty$1 } from "../../packages/table/aside/index.mjs";
|
|
19
|
-
import ValueSelector from "../../components/ValueSelector.
|
|
19
|
+
import ValueSelector from "../../components/ValueSelector.vue.mjs";
|
|
20
20
|
/* empty css */
|
|
21
21
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
22
22
|
import { ElDialog } from "../../../../node_modules/element-plus/es/components/dialog/index.mjs";
|
|
@@ -48,11 +48,11 @@ const _sfc_main = {
|
|
|
48
48
|
const $emits = __emit;
|
|
49
49
|
const filterRules = useVModel($props, "modelValue", $emits);
|
|
50
50
|
const getFieldType = (fieldId) => {
|
|
51
|
-
const field = $props.filterFields.find((e) => e.id
|
|
51
|
+
const field = $props.filterFields.find((e) => e.id == fieldId);
|
|
52
52
|
return (field == null ? void 0 : field.type) || "input";
|
|
53
53
|
};
|
|
54
54
|
const getField = (fieldId) => {
|
|
55
|
-
const field = $props.filterFields.find((e) => e.id
|
|
55
|
+
const field = $props.filterFields.find((e) => e.id == fieldId);
|
|
56
56
|
return field || {};
|
|
57
57
|
};
|
|
58
58
|
const getOperatorOptions = (type) => {
|
|
@@ -94,7 +94,7 @@ const _sfc_main = {
|
|
|
94
94
|
};
|
|
95
95
|
const isOperatorValid = (operator, fieldType) => {
|
|
96
96
|
const options = getOperatorOptions(fieldType);
|
|
97
|
-
return options.some((opt) => opt.value
|
|
97
|
+
return options.some((opt) => opt.value == operator);
|
|
98
98
|
};
|
|
99
99
|
const getDefaultOperator = (fieldType) => {
|
|
100
100
|
return "eq";
|
|
@@ -114,9 +114,9 @@ const _sfc_main = {
|
|
|
114
114
|
const isMultiple = ["in_any", "ni_any", "contains", "not_contains"].includes(
|
|
115
115
|
item.operator
|
|
116
116
|
);
|
|
117
|
-
const isRange = item.operator
|
|
117
|
+
const isRange = item.operator == "range";
|
|
118
118
|
if (isRange) {
|
|
119
|
-
if (item.value
|
|
119
|
+
if (item.value == null || typeof item.value !== "object") {
|
|
120
120
|
item.value = { min: null, max: null };
|
|
121
121
|
} else if (!("min" in item.value) || !("max" in item.value)) {
|
|
122
122
|
item.value = { min: item.value.min || null, max: item.value.max || null };
|
|
@@ -124,11 +124,11 @@ const _sfc_main = {
|
|
|
124
124
|
} else if (isMultiple) {
|
|
125
125
|
if (!Array.isArray(item.value) && item.value !== null) {
|
|
126
126
|
item.value = [item.value];
|
|
127
|
-
} else if (item.value
|
|
127
|
+
} else if (item.value == null) {
|
|
128
128
|
item.value = [];
|
|
129
129
|
}
|
|
130
130
|
} else {
|
|
131
|
-
if (Array.isArray(item.value) || typeof item.value
|
|
131
|
+
if (Array.isArray(item.value) || typeof item.value == "object") {
|
|
132
132
|
item.value = null;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
@@ -342,7 +342,7 @@ const _sfc_main = {
|
|
|
342
342
|
_: 2
|
|
343
343
|
}, 1032, ["onDelGroup", "modelValue", "onUpdate:modelValue", "filterFields"]);
|
|
344
344
|
}), 128)),
|
|
345
|
-
unref(filterRules).groups.length
|
|
345
|
+
unref(filterRules).groups.length == 0 && unref(filterRules).conditions.length == 0 ? (openBlock(), createElementBlock("div", _hoisted_4)) : createCommentVNode("", true)
|
|
346
346
|
]),
|
|
347
347
|
_: 1
|
|
348
348
|
}, 8, ["model"])) : createCommentVNode("", true),
|
|
@@ -381,7 +381,7 @@ const _sfc_main = {
|
|
|
381
381
|
};
|
|
382
382
|
}
|
|
383
383
|
};
|
|
384
|
-
const AdvancedFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
384
|
+
const AdvancedFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-fd919c69"]]);
|
|
385
385
|
export {
|
|
386
386
|
AdvancedFilter as default
|
|
387
387
|
};
|
|
@@ -45,9 +45,9 @@ const _sfc_main = {
|
|
|
45
45
|
result.push({
|
|
46
46
|
label: "表单字段",
|
|
47
47
|
options: formFields.map((item) => ({
|
|
48
|
-
id: item.id,
|
|
48
|
+
id: item.id + "",
|
|
49
49
|
label: item.label,
|
|
50
|
-
value: item.id
|
|
50
|
+
value: item.id + ""
|
|
51
51
|
}))
|
|
52
52
|
});
|
|
53
53
|
}
|
|
@@ -55,9 +55,9 @@ const _sfc_main = {
|
|
|
55
55
|
result.push({
|
|
56
56
|
label: "隐藏域",
|
|
57
57
|
options: hiddenFields.map((item) => ({
|
|
58
|
-
id: item.id,
|
|
58
|
+
id: item.id + "",
|
|
59
59
|
label: item.label,
|
|
60
|
-
value: item.id
|
|
60
|
+
value: item.id + ""
|
|
61
61
|
}))
|
|
62
62
|
});
|
|
63
63
|
}
|
|
@@ -98,7 +98,7 @@ const _sfc_main = {
|
|
|
98
98
|
};
|
|
99
99
|
}
|
|
100
100
|
};
|
|
101
|
-
const Trigger = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
101
|
+
const Trigger = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8d97037c"]]);
|
|
102
102
|
export {
|
|
103
103
|
Trigger as default
|
|
104
104
|
};
|
|
@@ -14,7 +14,7 @@ import "../../../../node_modules/element-plus/theme-chalk/el-tooltip.css.mjs";
|
|
|
14
14
|
import "../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs";
|
|
15
15
|
import { computed, watch, ref, createElementBlock, unref, openBlock, createBlock, isRef, createVNode, createElementVNode, withCtx, Fragment, renderList } from "vue";
|
|
16
16
|
import { useVModel } from "../../../../node_modules/@vueuse/core/dist/index.mjs";
|
|
17
|
-
import ValueSelector from "../../components/ValueSelector.
|
|
17
|
+
import ValueSelector from "../../components/ValueSelector.vue.mjs";
|
|
18
18
|
import api from "../../api/index.mjs";
|
|
19
19
|
import { getEditConfigDataSources } from "../utils/common.mjs";
|
|
20
20
|
import { createDataSource } from "../utils/datasource.mjs";
|
|
@@ -30,7 +30,7 @@ import "../../../../node_modules/element-plus/theme-chalk/el-date-picker.css.mjs
|
|
|
30
30
|
/* empty css */
|
|
31
31
|
/* empty css */
|
|
32
32
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
33
|
-
/* empty css
|
|
33
|
+
/* empty css */
|
|
34
34
|
import "../../axios/config.mjs";
|
|
35
35
|
import "../../../../_virtual/FileSaver.min.mjs";
|
|
36
36
|
import "../../../../_virtual/index.mjs";
|
|
@@ -136,7 +136,7 @@ const _sfc_main = {
|
|
|
136
136
|
]);
|
|
137
137
|
const activeTab = ref("dataLink");
|
|
138
138
|
const currentTab = computed(() => {
|
|
139
|
-
return tabList.value.find((tab) => tab.name
|
|
139
|
+
return tabList.value.find((tab) => tab.name == activeTab.value);
|
|
140
140
|
});
|
|
141
141
|
const dataLinkFieldList = ref([]);
|
|
142
142
|
const filterConfig = ref();
|
|
@@ -192,10 +192,10 @@ const _sfc_main = {
|
|
|
192
192
|
dataLinkFieldList: dataLinkFieldList.value,
|
|
193
193
|
filterConfig: data
|
|
194
194
|
};
|
|
195
|
-
if (currentTab.value.name
|
|
195
|
+
if (currentTab.value.name == "dataLink") {
|
|
196
196
|
newRule.fieldAssignments = cloneDeep(fieldAssignments.value);
|
|
197
197
|
}
|
|
198
|
-
if (editingRuleIndex.value
|
|
198
|
+
if (editingRuleIndex.value == -1) {
|
|
199
199
|
linedConfigArr.push(newRule);
|
|
200
200
|
} else {
|
|
201
201
|
linedConfigArr[editingRuleIndex.value] = newRule;
|
|
@@ -208,7 +208,7 @@ const _sfc_main = {
|
|
|
208
208
|
editingRuleIndex.value = -1;
|
|
209
209
|
}
|
|
210
210
|
const getFieldLabel = (fieldId) => {
|
|
211
|
-
const field = fieldsData.value.find((f) => f.id
|
|
211
|
+
const field = fieldsData.value.find((f) => f.id == fieldId);
|
|
212
212
|
return (field == null ? void 0 : field.label) || fieldId;
|
|
213
213
|
};
|
|
214
214
|
const getFieldTitle = (tabName) => {
|
|
@@ -224,7 +224,7 @@ const _sfc_main = {
|
|
|
224
224
|
};
|
|
225
225
|
const formatFormulaText = (assignment) => {
|
|
226
226
|
const { formula } = assignment;
|
|
227
|
-
if (formula
|
|
227
|
+
if (formula == null || (formula == null ? void 0 : formula.value) == void 0 || (formula == null ? void 0 : formula.text) == null || (formula == null ? void 0 : formula.text) == void 0 || (formula == null ? void 0 : formula.value.text) == "") {
|
|
228
228
|
return "空";
|
|
229
229
|
}
|
|
230
230
|
return String(formula.text);
|
|
@@ -250,10 +250,10 @@ const _sfc_main = {
|
|
|
250
250
|
const handleEditRule = (tab, item, index) => {
|
|
251
251
|
filterTitle.value = `${tab.label}联动规则`;
|
|
252
252
|
filterConfig.value = cloneDeep(item.filterConfig);
|
|
253
|
-
dataLinkFieldList.value = [...item.dataLinkFieldList];
|
|
254
|
-
if (tab.name
|
|
253
|
+
dataLinkFieldList.value = [...item.dataLinkFieldList.map(String)];
|
|
254
|
+
if (tab.name == "dataLink" && item.fieldAssignments) {
|
|
255
255
|
fieldAssignments.value = cloneDeep(item.fieldAssignments);
|
|
256
|
-
} else if (tab.name
|
|
256
|
+
} else if (tab.name == "dataLink") {
|
|
257
257
|
fieldAssignments.value = [];
|
|
258
258
|
}
|
|
259
259
|
editingRuleIndex.value = index;
|
|
@@ -368,7 +368,7 @@ const _sfc_main = {
|
|
|
368
368
|
createElementVNode("div", _hoisted_10, [
|
|
369
369
|
createElementVNode("div", _hoisted_11, toDisplayString(getFieldTitle(tab.name)), 1),
|
|
370
370
|
createElementVNode("div", _hoisted_12, [
|
|
371
|
-
tab.name
|
|
371
|
+
tab.name == "dataLink" && item.fieldAssignments && item.fieldAssignments.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_13, [
|
|
372
372
|
(openBlock(true), createElementBlock(Fragment, null, renderList(item.fieldAssignments, (assignment, index) => {
|
|
373
373
|
return openBlock(), createElementBlock("div", {
|
|
374
374
|
key: index,
|
|
@@ -450,15 +450,15 @@ const _sfc_main = {
|
|
|
450
450
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(dataLinkFieldList) ? dataLinkFieldList.value = $event : null),
|
|
451
451
|
multiple: "",
|
|
452
452
|
filterable: "",
|
|
453
|
-
placeholder: !filterConfigData || ((_a = filterConfigData.conditions) == null ? void 0 : _a.length)
|
|
454
|
-
disabled: !filterConfigData || ((_b = filterConfigData.conditions) == null ? void 0 : _b.length)
|
|
453
|
+
placeholder: !filterConfigData || ((_a = filterConfigData.conditions) == null ? void 0 : _a.length) == 0 ? "请选择字段" : "",
|
|
454
|
+
disabled: !filterConfigData || ((_b = filterConfigData.conditions) == null ? void 0 : _b.length) == 0
|
|
455
455
|
}, {
|
|
456
456
|
default: withCtx(() => [
|
|
457
457
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(fieldsData), (item) => {
|
|
458
458
|
return openBlock(), createBlock(_component_el_option, {
|
|
459
|
-
key: item.id,
|
|
459
|
+
key: item.id + "",
|
|
460
460
|
label: item.label,
|
|
461
|
-
value: item.id
|
|
461
|
+
value: item.id + ""
|
|
462
462
|
}, null, 8, ["label", "value"]);
|
|
463
463
|
}), 128))
|
|
464
464
|
]),
|
|
@@ -552,7 +552,7 @@ const _sfc_main = {
|
|
|
552
552
|
};
|
|
553
553
|
}
|
|
554
554
|
};
|
|
555
|
-
const DataLinkage = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
555
|
+
const DataLinkage = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-889ebf8b"]]);
|
|
556
556
|
export {
|
|
557
557
|
DataLinkage as default
|
|
558
558
|
};
|
|
@@ -4,7 +4,7 @@ import "../../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
4
4
|
/* empty css */
|
|
5
5
|
import { createElementBlock, openBlock, Fragment, createVNode, withCtx } from "vue";
|
|
6
6
|
import RiskSchemeSelector from "../../../../components/RiskSchemeSelector.vue2.mjs";
|
|
7
|
-
import ValueSelector from "../../../../components/ValueSelector.
|
|
7
|
+
import ValueSelector from "../../../../components/ValueSelector.vue.mjs";
|
|
8
8
|
import ParamsConfig from "../../../../components/ParamsConfig.vue2.mjs";
|
|
9
9
|
import { ElFormItem } from "../../../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
10
10
|
import { ElSwitch } from "../../../../../../node_modules/element-plus/es/components/switch/index.mjs";
|
|
@@ -11,7 +11,7 @@ import "../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
11
11
|
import { computed, ref, watch, createBlock, openBlock, unref, isRef, withCtx, createVNode, createElementBlock, createCommentVNode, createTextVNode, Fragment } from "vue";
|
|
12
12
|
import { getCurrentItem, getEditConfigData } from "../../utils/common.mjs";
|
|
13
13
|
import emitter from "../../utils/eventBus.mjs";
|
|
14
|
-
import ValueSelector from "../../../components/ValueSelector.
|
|
14
|
+
import ValueSelector from "../../../components/ValueSelector.vue.mjs";
|
|
15
15
|
import { ElCollapse, ElCollapseItem } from "../../../../../node_modules/element-plus/es/components/collapse/index.mjs";
|
|
16
16
|
import { ElForm, ElFormItem } from "../../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
17
17
|
import { ElInput } from "../../../../../node_modules/element-plus/es/components/input/index.mjs";
|
|
@@ -17,7 +17,7 @@ import "../../../../../node_modules/element-plus/es/index.mjs";
|
|
|
17
17
|
import { computed, ref, createBlock, openBlock, withCtx, createVNode, createTextVNode, createElementBlock, Fragment, renderList } from "vue";
|
|
18
18
|
import { getCurrentItem } from "../../utils/common.mjs";
|
|
19
19
|
import "../../utils/eventBus.mjs";
|
|
20
|
-
import ValueSelector from "../../../components/ValueSelector.
|
|
20
|
+
import ValueSelector from "../../../components/ValueSelector.vue.mjs";
|
|
21
21
|
import api from "../../../api/index.mjs";
|
|
22
22
|
import ParamsConfig from "../../../components/ParamsConfig.vue2.mjs";
|
|
23
23
|
/* empty css */
|
|
@@ -12,7 +12,7 @@ import { computed, ref, createBlock, openBlock, unref, isRef, withCtx, createVNo
|
|
|
12
12
|
import { getCurrentItem, getEditConfigData } from "../../utils/common.mjs";
|
|
13
13
|
import TemplateSelector from "../../../components/TemplateSelector.vue2.mjs";
|
|
14
14
|
import emitter from "../../utils/eventBus.mjs";
|
|
15
|
-
import ValueSelector from "../../../components/ValueSelector.
|
|
15
|
+
import ValueSelector from "../../../components/ValueSelector.vue.mjs";
|
|
16
16
|
import ParamsConfig from "../../../components/ParamsConfig.vue2.mjs";
|
|
17
17
|
import { ElCollapse, ElCollapseItem } from "../../../../../node_modules/element-plus/es/components/collapse/index.mjs";
|
|
18
18
|
import { ElForm, ElFormItem } from "../../../../../node_modules/element-plus/es/components/form/index.mjs";
|
|
@@ -52,8 +52,8 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
52
52
|
import "../../../components/TemplateSelector.vue.mjs";
|
|
53
53
|
import "../../table/default.mjs";
|
|
54
54
|
/* empty css */
|
|
55
|
-
/* empty css
|
|
56
|
-
/* empty css
|
|
55
|
+
/* empty css */
|
|
56
|
+
/* empty css */
|
|
57
57
|
import "../../../store/index.mjs";
|
|
58
58
|
/* empty css */
|
|
59
59
|
import { ElCollapse, ElCollapseItem } from "../../../../../node_modules/element-plus/es/components/collapse/index.mjs";
|
|
@@ -14,7 +14,7 @@ import "../../../../node_modules/element-plus/es/index.mjs";
|
|
|
14
14
|
import { useModel, ref, watch, computed, createBlock, openBlock, withCtx, createVNode, createElementVNode, createElementBlock, Fragment, renderList, createTextVNode, unref } from "vue";
|
|
15
15
|
import { Plus as plus_default } from "../../../../node_modules/@element-plus/icons-vue/dist/index.mjs";
|
|
16
16
|
import { getEditConfigData, getEditConfigDataFields, setEditConfigData } from "../utils/common.mjs";
|
|
17
|
-
import ValueSelector from "../../components/ValueSelector.
|
|
17
|
+
import ValueSelector from "../../components/ValueSelector.vue.mjs";
|
|
18
18
|
import api from "../../api/index.mjs";
|
|
19
19
|
/* empty css */
|
|
20
20
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.mjs";
|