@fecp/designer 5.4.15 → 5.4.16
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/api/index.mjs +7 -1
- package/es/designer/src/components/DocumentParam.vue.mjs +3 -3
- package/es/designer/src/components/ParamsConfig.vue2.mjs +1 -1
- package/es/designer/src/components/RiskSchemeDialog.vue2.mjs +241 -0
- package/es/designer/src/components/RiskSchemeSelector.vue2.mjs +68 -0
- package/es/designer/src/components/TemplateDialog.vue.mjs +1 -1
- package/es/designer/src/layout/aside/HiddenFieldDialog.vue.mjs +1 -1
- package/es/designer/src/packages/advancedFilter/ValueInput.vue2.mjs +1 -1
- package/es/designer/src/packages/dataLinkage/index.vue.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/index.vue.mjs +11 -6
- package/es/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.mjs +55 -0
- package/es/designer/src/packages/eventFlow/dialog/action/config.mjs +171 -69
- package/es/designer/src/packages/form/property/approvalHistory.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/contract.vue.mjs +27 -12
- package/es/designer/src/packages/form/property/subForm.vue.mjs +1 -1
- package/es/designer/src/packages/prod/index.vue.mjs +1 -1
- package/es/designer/src/packages/table/headerBtn.vue.mjs +6 -1
- package/es/designer.css +46 -28
- package/es/packages/vue/src/components/bus/contract/Contract.vue.mjs +6 -1
- package/es/packages/vue/src/components/dialog/DialogRenderer.vue2.mjs +1 -1
- package/es/packages/vue/src/components/forms/cascader/Cascader.vue.mjs +1 -1
- package/es/packages/vue/src/components/forms/date/Date.vue.mjs +1 -1
- package/es/packages/vue/src/components/forms/form/Form.vue.mjs +3 -2
- package/es/packages/vue/src/components/forms/radio/Radio.vue.mjs +1 -1
- package/es/packages/vue/src/components/forms/select/Select.vue.mjs +1 -1
- package/es/packages/vue/src/components/forms/text/Text.vue.mjs +1 -1
- package/es/packages/vue/src/components/table/TableColumn.vue.mjs +1 -1
- package/es/packages/vue/src/composables/usePageEvents.mjs +1 -1
- package/es/packages/vue/src/utils/datasource.mjs +1 -1
- package/es/packages/vue/src/utils/eventFlow/actionHandlers.mjs +54 -29
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/api/index.js +7 -1
- package/lib/designer/src/components/DocumentParam.vue.js +3 -3
- package/lib/designer/src/components/ParamsConfig.vue2.js +1 -1
- package/lib/designer/src/components/RiskSchemeDialog.vue2.js +241 -0
- package/lib/designer/src/components/RiskSchemeSelector.vue2.js +68 -0
- package/lib/designer/src/components/TemplateDialog.vue.js +1 -1
- package/lib/designer/src/layout/aside/HiddenFieldDialog.vue.js +1 -1
- package/lib/designer/src/packages/advancedFilter/ValueInput.vue2.js +1 -1
- package/lib/designer/src/packages/dataLinkage/index.vue.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue.js +11 -6
- package/lib/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.js +55 -0
- package/lib/designer/src/packages/eventFlow/dialog/action/config.js +170 -68
- package/lib/designer/src/packages/form/property/approvalHistory.vue.js +1 -1
- package/lib/designer/src/packages/form/property/contract.vue.js +27 -12
- package/lib/designer/src/packages/form/property/subForm.vue.js +1 -1
- package/lib/designer/src/packages/prod/index.vue.js +1 -1
- package/lib/designer/src/packages/table/headerBtn.vue.js +6 -1
- package/lib/designer.css +46 -28
- package/lib/packages/vue/src/components/bus/contract/Contract.vue.js +6 -1
- package/lib/packages/vue/src/components/dialog/DialogRenderer.vue2.js +1 -1
- package/lib/packages/vue/src/components/forms/cascader/Cascader.vue.js +1 -1
- package/lib/packages/vue/src/components/forms/date/Date.vue.js +1 -1
- package/lib/packages/vue/src/components/forms/form/Form.vue.js +3 -2
- package/lib/packages/vue/src/components/forms/radio/Radio.vue.js +1 -1
- package/lib/packages/vue/src/components/forms/select/Select.vue.js +1 -1
- package/lib/packages/vue/src/components/forms/text/Text.vue.js +1 -1
- package/lib/packages/vue/src/components/table/TableColumn.vue.js +1 -1
- package/lib/packages/vue/src/composables/usePageEvents.js +1 -1
- package/lib/packages/vue/src/utils/datasource.js +1 -1
- package/lib/packages/vue/src/utils/eventFlow/actionHandlers.js +53 -28
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _sfc_main from "./Page.vue.mjs";
|
|
2
2
|
import _sfc_main$1 from "./PageGoBack.vue.mjs";
|
|
3
|
-
import _sfc_main$
|
|
3
|
+
import _sfc_main$6 from "./Request.vue.mjs";
|
|
4
4
|
import FormSubmit from "./FormSubmit.vue2.mjs";
|
|
5
5
|
import FormSetValue from "./FormSetValue.vue2.mjs";
|
|
6
6
|
import _sfc_main$3 from "./Message.vue.mjs";
|
|
@@ -11,110 +11,212 @@ import TableRowDelete from "./TableRowDelete.vue2.mjs";
|
|
|
11
11
|
import _sfc_main$2 from "./Dialog.vue.mjs";
|
|
12
12
|
import Upload from "./Upload.vue2.mjs";
|
|
13
13
|
import TableChildSelection from "./TableChildSelection.vue2.mjs";
|
|
14
|
+
import _sfc_main$5 from "./RiskSch.vue.mjs";
|
|
14
15
|
const menuData = [
|
|
15
16
|
{
|
|
16
17
|
index: "page",
|
|
17
18
|
label: "页面",
|
|
18
19
|
items: [
|
|
19
|
-
{
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
{
|
|
21
|
+
index: "page-jump",
|
|
22
|
+
label: "跳转页面",
|
|
23
|
+
desc: "跳转到指定页面",
|
|
24
|
+
component: _sfc_main,
|
|
25
|
+
default: {
|
|
26
|
+
transitionType: "page",
|
|
27
|
+
routePath: "",
|
|
28
|
+
routeParams: []
|
|
29
|
+
}
|
|
30
|
+
},
|
|
24
31
|
{ index: "page-refresh", label: "刷新页面", desc: "刷新当前页面" },
|
|
25
|
-
{
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
{
|
|
33
|
+
index: "page-go-back",
|
|
34
|
+
label: "页面返回",
|
|
35
|
+
desc: "返回之前访问的页面",
|
|
36
|
+
component: _sfc_main$1,
|
|
37
|
+
default: {
|
|
38
|
+
backLevel: 1,
|
|
39
|
+
showConfirm: false,
|
|
40
|
+
confirmTitle: "确认返回",
|
|
41
|
+
confirmMessage: "确定要返回到上一页吗?",
|
|
42
|
+
noHistoryAction: "none"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
32
45
|
]
|
|
33
46
|
},
|
|
34
47
|
{
|
|
35
48
|
index: "ui",
|
|
36
49
|
label: "交互",
|
|
37
50
|
items: [
|
|
38
|
-
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
51
|
+
{
|
|
52
|
+
index: "ui-dialog",
|
|
53
|
+
label: "打开弹层",
|
|
54
|
+
desc: "打开指定的弹层",
|
|
55
|
+
component: _sfc_main$2,
|
|
56
|
+
default: {
|
|
57
|
+
dialogSource: "global",
|
|
58
|
+
selectionMode: "none",
|
|
59
|
+
fieldMapping: []
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
index: "ui-message",
|
|
64
|
+
label: "显示提示信息",
|
|
65
|
+
desc: "显示消息提示",
|
|
66
|
+
component: _sfc_main$3,
|
|
67
|
+
default: {
|
|
68
|
+
messageType: "success",
|
|
69
|
+
message: ""
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
index: "ui-confirm",
|
|
74
|
+
label: "确认弹窗",
|
|
75
|
+
desc: "显示确认对话框",
|
|
76
|
+
component: _sfc_main$4,
|
|
77
|
+
default: {
|
|
78
|
+
messageType: "warning",
|
|
79
|
+
title: "确认操作",
|
|
80
|
+
message: "此操作将永久删除该记录, 是否继续?",
|
|
81
|
+
confirmText: "确定",
|
|
82
|
+
cancelText: "取消",
|
|
83
|
+
showCancel: true,
|
|
84
|
+
confirmAction: "continue"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
index: "ui-upload",
|
|
89
|
+
label: "文件上传",
|
|
90
|
+
desc: "上传文件到服务器",
|
|
91
|
+
component: Upload,
|
|
92
|
+
default: {
|
|
93
|
+
acceptType: [
|
|
94
|
+
"doc",
|
|
95
|
+
"xls",
|
|
96
|
+
"ppt",
|
|
97
|
+
"pdf",
|
|
98
|
+
"text",
|
|
99
|
+
"image",
|
|
100
|
+
"video",
|
|
101
|
+
"audio",
|
|
102
|
+
"zip"
|
|
103
|
+
],
|
|
104
|
+
maxSize: "0",
|
|
105
|
+
multipleUpload: false
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
index: "riskSchDialog",
|
|
110
|
+
label: "风险拦截校验",
|
|
111
|
+
desc: "弹出风险拦截提示信息",
|
|
112
|
+
component: _sfc_main$5,
|
|
113
|
+
default: {
|
|
114
|
+
schName: [],
|
|
115
|
+
schNo: "",
|
|
116
|
+
params: []
|
|
117
|
+
}
|
|
118
|
+
}
|
|
71
119
|
]
|
|
72
120
|
},
|
|
73
121
|
{
|
|
74
122
|
index: "form",
|
|
75
123
|
label: "表单",
|
|
76
124
|
items: [
|
|
77
|
-
{
|
|
78
|
-
|
|
125
|
+
{
|
|
126
|
+
index: "form-setValue",
|
|
127
|
+
label: "请求表单赋值",
|
|
128
|
+
desc: "通过请求设置表单字段的值",
|
|
129
|
+
component: FormSetValue,
|
|
130
|
+
default: { fieldMapping: [] }
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
index: "form-submit",
|
|
134
|
+
label: "请求表单提交",
|
|
135
|
+
desc: "提交表单数据到后台服务",
|
|
136
|
+
component: FormSubmit,
|
|
137
|
+
default: { formValidate: true, fieldMapping: [], extraParams: [] }
|
|
138
|
+
}
|
|
79
139
|
]
|
|
80
140
|
},
|
|
81
141
|
{
|
|
82
142
|
index: "table",
|
|
83
143
|
label: "列表",
|
|
84
144
|
items: [
|
|
85
|
-
{
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
145
|
+
{
|
|
146
|
+
index: "table-refresh",
|
|
147
|
+
label: "列表数据刷新",
|
|
148
|
+
desc: "刷新表格的数据列表",
|
|
149
|
+
component: TableRefresh,
|
|
150
|
+
default: {
|
|
151
|
+
resetSort: false,
|
|
152
|
+
resetFilter: false,
|
|
153
|
+
resetPagination: false
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
index: "table-row-delete",
|
|
158
|
+
label: "行数据删除",
|
|
159
|
+
desc: "删除列表的行数据",
|
|
160
|
+
component: TableRowDelete,
|
|
161
|
+
default: {
|
|
162
|
+
showConfirmDeleteMessage: true,
|
|
163
|
+
resetTableAfterDelete: true
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
index: "table-child-refresh",
|
|
168
|
+
label: "子列表数据刷新",
|
|
169
|
+
desc: "刷新子列表的数据列表",
|
|
170
|
+
component: TableChildRefresh,
|
|
171
|
+
default: {
|
|
172
|
+
resetSort: false,
|
|
173
|
+
resetFilter: false,
|
|
174
|
+
resetPagination: false
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
index: "table-child-selection",
|
|
179
|
+
label: "子列表勾选数据赋值",
|
|
180
|
+
desc: "将子列表勾选的数据赋值到主表单",
|
|
181
|
+
component: TableChildSelection,
|
|
182
|
+
default: {
|
|
183
|
+
subTableSelectionFieldMapping: []
|
|
184
|
+
}
|
|
185
|
+
}
|
|
102
186
|
]
|
|
103
187
|
},
|
|
104
188
|
{
|
|
105
189
|
index: "request",
|
|
106
190
|
label: "请求",
|
|
107
191
|
items: [
|
|
108
|
-
{
|
|
192
|
+
{
|
|
193
|
+
index: "request-send",
|
|
194
|
+
label: "发送请求",
|
|
195
|
+
desc: "通过数据源发送API请求",
|
|
196
|
+
component: _sfc_main$6,
|
|
197
|
+
default: { showSuccessMessage: false }
|
|
198
|
+
}
|
|
109
199
|
]
|
|
110
200
|
},
|
|
111
201
|
{
|
|
112
202
|
index: "storage",
|
|
113
203
|
label: "存储",
|
|
114
204
|
items: [
|
|
115
|
-
{
|
|
116
|
-
|
|
117
|
-
|
|
205
|
+
{
|
|
206
|
+
index: "storage-set",
|
|
207
|
+
label: "存入本地 / 会话缓存",
|
|
208
|
+
desc: "将数据保存到本地存储或会话存储"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
index: "storage-get",
|
|
212
|
+
label: "从缓存中读取数据",
|
|
213
|
+
desc: "从本地存储或会话存储中获取数据"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
index: "storage-remove",
|
|
217
|
+
label: "删除缓存数据",
|
|
218
|
+
desc: "从本地存储或会话存储中删除指定数据"
|
|
219
|
+
}
|
|
118
220
|
]
|
|
119
221
|
}
|
|
120
222
|
];
|
|
@@ -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.vue2.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.vue2.mjs";
|
|
21
21
|
import api from "../../../api/index.mjs";
|
|
22
22
|
import ParamsConfig from "../../../components/ParamsConfig.vue2.mjs";
|
|
23
23
|
/* empty css */
|
|
@@ -35,7 +35,7 @@ const _sfc_main = {
|
|
|
35
35
|
});
|
|
36
36
|
const activeName = ref(["common"]);
|
|
37
37
|
const scenarioOptions = ref([]);
|
|
38
|
-
api.
|
|
38
|
+
api.getModeNoList4Cont().then((data) => {
|
|
39
39
|
scenarioOptions.value = data.map((item) => ({
|
|
40
40
|
label: item.modeName,
|
|
41
41
|
value: item.modeNo
|
|
@@ -54,7 +54,7 @@ const _sfc_main = {
|
|
|
54
54
|
return openBlock(), createBlock(_component_el_collapse, {
|
|
55
55
|
class: "setting",
|
|
56
56
|
modelValue: activeName.value,
|
|
57
|
-
"onUpdate:modelValue": _cache[
|
|
57
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => activeName.value = $event)
|
|
58
58
|
}, {
|
|
59
59
|
default: withCtx(() => [
|
|
60
60
|
createVNode(_component_el_collapse_item, {
|
|
@@ -98,19 +98,19 @@ const _sfc_main = {
|
|
|
98
98
|
}, {
|
|
99
99
|
default: withCtx(() => [
|
|
100
100
|
createVNode(_component_el_radio_button, { value: "view" }, {
|
|
101
|
-
default: withCtx(() => _cache[
|
|
101
|
+
default: withCtx(() => _cache[9] || (_cache[9] = [
|
|
102
102
|
createTextVNode("合同查看")
|
|
103
103
|
])),
|
|
104
104
|
_: 1
|
|
105
105
|
}),
|
|
106
106
|
createVNode(_component_el_radio_button, { value: "make" }, {
|
|
107
|
-
default: withCtx(() => _cache[
|
|
107
|
+
default: withCtx(() => _cache[10] || (_cache[10] = [
|
|
108
108
|
createTextVNode("合同制作")
|
|
109
109
|
])),
|
|
110
110
|
_: 1
|
|
111
111
|
}),
|
|
112
112
|
createVNode(_component_el_radio_button, { value: "sign" }, {
|
|
113
|
-
default: withCtx(() => _cache[
|
|
113
|
+
default: withCtx(() => _cache[11] || (_cache[11] = [
|
|
114
114
|
createTextVNode("合同签署")
|
|
115
115
|
])),
|
|
116
116
|
_: 1
|
|
@@ -136,11 +136,26 @@ const _sfc_main = {
|
|
|
136
136
|
]),
|
|
137
137
|
_: 1
|
|
138
138
|
}),
|
|
139
|
+
createVNode(_component_el_form_item, {
|
|
140
|
+
label: "合同编号(contNo)",
|
|
141
|
+
required: ""
|
|
142
|
+
}, {
|
|
143
|
+
default: withCtx(() => [
|
|
144
|
+
createVNode(ValueSelector, {
|
|
145
|
+
modelValue: currentItem.value.contNo,
|
|
146
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => currentItem.value.contNo = $event),
|
|
147
|
+
multiple: false,
|
|
148
|
+
size: "default",
|
|
149
|
+
placeholder: "选择合同编号"
|
|
150
|
+
}, null, 8, ["modelValue"])
|
|
151
|
+
]),
|
|
152
|
+
_: 1
|
|
153
|
+
}),
|
|
139
154
|
createVNode(_component_el_form_item, { label: "业务场景" }, {
|
|
140
155
|
default: withCtx(() => [
|
|
141
156
|
createVNode(_component_el_select, {
|
|
142
157
|
modelValue: currentItem.value.busSubject,
|
|
143
|
-
"onUpdate:modelValue": _cache[
|
|
158
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => currentItem.value.busSubject = $event),
|
|
144
159
|
placeholder: "选择业务场景",
|
|
145
160
|
style: { "width": "100%" },
|
|
146
161
|
clearable: ""
|
|
@@ -163,18 +178,18 @@ const _sfc_main = {
|
|
|
163
178
|
default: withCtx(() => [
|
|
164
179
|
createVNode(_component_el_radio_group, {
|
|
165
180
|
modelValue: currentItem.value.genType,
|
|
166
|
-
"onUpdate:modelValue": _cache[
|
|
181
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => currentItem.value.genType = $event),
|
|
167
182
|
size: "small"
|
|
168
183
|
}, {
|
|
169
184
|
default: withCtx(() => [
|
|
170
185
|
createVNode(_component_el_radio_button, { value: "1" }, {
|
|
171
|
-
default: withCtx(() => _cache[
|
|
186
|
+
default: withCtx(() => _cache[12] || (_cache[12] = [
|
|
172
187
|
createTextVNode("系统生成")
|
|
173
188
|
])),
|
|
174
189
|
_: 1
|
|
175
190
|
}),
|
|
176
191
|
createVNode(_component_el_radio_button, { value: "2" }, {
|
|
177
|
-
default: withCtx(() => _cache[
|
|
192
|
+
default: withCtx(() => _cache[13] || (_cache[13] = [
|
|
178
193
|
createTextVNode("手动选择")
|
|
179
194
|
])),
|
|
180
195
|
_: 1
|
|
@@ -189,7 +204,7 @@ const _sfc_main = {
|
|
|
189
204
|
default: withCtx(() => [
|
|
190
205
|
createVNode(ParamsConfig, {
|
|
191
206
|
modelValue: currentItem.value.params,
|
|
192
|
-
"onUpdate:modelValue": _cache[
|
|
207
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => currentItem.value.params = $event)
|
|
193
208
|
}, null, 8, ["modelValue"])
|
|
194
209
|
]),
|
|
195
210
|
_: 1
|
|
@@ -206,7 +221,7 @@ const _sfc_main = {
|
|
|
206
221
|
};
|
|
207
222
|
}
|
|
208
223
|
};
|
|
209
|
-
const contract = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
224
|
+
const contract = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-482108da"]]);
|
|
210
225
|
export {
|
|
211
226
|
contract as default
|
|
212
227
|
};
|
|
@@ -13,7 +13,7 @@ import { computed, ref, createBlock, openBlock, unref, isRef, withCtx, createVNo
|
|
|
13
13
|
import { getCurrentItem, getEditConfigData } from "../../utils/common.mjs";
|
|
14
14
|
import TemplateSelector from "../../../components/TemplateSelector.vue.mjs";
|
|
15
15
|
import emitter from "../../utils/eventBus.mjs";
|
|
16
|
-
import ValueSelector from "../../../components/ValueSelector.
|
|
16
|
+
import ValueSelector from "../../../components/ValueSelector.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";
|
|
19
19
|
import { ElInput } from "../../../../../node_modules/element-plus/es/components/input/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.vue2.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";
|
|
@@ -45,7 +45,7 @@ import { Connection as connection_default, Grid as grid_default, ChatLineSquare
|
|
|
45
45
|
/* empty css */
|
|
46
46
|
import "../../store/index.mjs";
|
|
47
47
|
/* empty css */
|
|
48
|
-
/* empty css
|
|
48
|
+
/* empty css */
|
|
49
49
|
/* empty css */
|
|
50
50
|
/* empty css */
|
|
51
51
|
/* empty css */
|
|
@@ -78,6 +78,11 @@ import "../../../../_virtual/index.mjs";
|
|
|
78
78
|
/* empty css */
|
|
79
79
|
/* empty css */
|
|
80
80
|
/* empty css */
|
|
81
|
+
/* empty css */
|
|
82
|
+
/* empty css */
|
|
83
|
+
/* empty css */
|
|
84
|
+
/* empty css */
|
|
85
|
+
/* empty css */
|
|
81
86
|
import { useAdvancedFilterDialog } from "../advancedFilter/useAdvancedFilterDialog.mjs";
|
|
82
87
|
/* empty css */
|
|
83
88
|
/* empty css */
|