super-page-designer 2.1.69 → 2.1.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/components/design/utils/assemblys-config.js +10 -12
- package/dist/es/components/design/views/assemblys/data/component/data-origin-tree.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/data-origin-tree.vue2.js +6 -0
- package/dist/es/components/design/views/assemblys/data/component/data-origin.vue2.js +1 -1
- package/dist/es/components/design/views/assemblys/data/tree/tree-attr-base.vue.js +47 -34
- package/dist/es/components/design/views/assemblys/data/tree/tree-design.vue2.js +7 -1
- package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue.js +152 -1
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js +1 -152
- package/dist/es/style.css +122 -122
- package/package.json +3 -3
|
@@ -1448,10 +1448,10 @@ const assemblyGroups = [
|
|
|
1448
1448
|
{ name: "hidden", label: "隐藏", tip: "隐藏" },
|
|
1449
1449
|
{ name: "node-click", label: "节点点击", tip: "当节点被点击的时候触发" },
|
|
1450
1450
|
{ name: "check-change", label: "复选框点击", tip: "当复选框被点击的时候触发" },
|
|
1451
|
-
{ name: "check", label: "复选框点击后", tip: "点击节点复选框之后触发" }
|
|
1452
|
-
{ name:
|
|
1453
|
-
{ name:
|
|
1454
|
-
{ name:
|
|
1451
|
+
{ name: "check", label: "复选框点击后", tip: "点击节点复选框之后触发" }
|
|
1452
|
+
// { name: 'add-node', label: '增加节点', tip: '增加节点触发' },
|
|
1453
|
+
// { name: 'update-node', label: '修改节点', tip: '修改节点触发' },
|
|
1454
|
+
// { name: 'delete-node', label: '移除节点', tip: '删除节点触发' }
|
|
1455
1455
|
],
|
|
1456
1456
|
icon: dataTree,
|
|
1457
1457
|
props: {
|
|
@@ -1475,13 +1475,16 @@ const assemblyGroups = [
|
|
|
1475
1475
|
optionValueSetType: "",
|
|
1476
1476
|
staticState: [],
|
|
1477
1477
|
staticData: `[{
|
|
1478
|
-
|
|
1478
|
+
"nodeId:"1",
|
|
1479
|
+
"name": "第一级",
|
|
1479
1480
|
"children": [
|
|
1480
1481
|
{
|
|
1481
|
-
"
|
|
1482
|
+
"nodeId:"1-1",
|
|
1483
|
+
"name": "第二级",
|
|
1482
1484
|
"children": [
|
|
1483
1485
|
{
|
|
1484
|
-
"
|
|
1486
|
+
"nodeId:"1-1-1",
|
|
1487
|
+
"name": "第三级"
|
|
1485
1488
|
}
|
|
1486
1489
|
]
|
|
1487
1490
|
}
|
|
@@ -1494,11 +1497,6 @@ const assemblyGroups = [
|
|
|
1494
1497
|
}
|
|
1495
1498
|
},
|
|
1496
1499
|
style: { titleFont: {}, verification: {}, background: {}, margin: {}, padding: {}, border: {}, shadow: {} },
|
|
1497
|
-
events: [
|
|
1498
|
-
{ name: "afterInit", label: "初始化后", tip: "初始化后" },
|
|
1499
|
-
{ name: "show", label: "显示", tip: "显示" },
|
|
1500
|
-
{ name: "hidden", label: "隐藏", tip: "隐藏" }
|
|
1501
|
-
],
|
|
1502
1500
|
designComponent: defineAsyncComponent(() => {
|
|
1503
1501
|
return import("../views/assemblys/data/tree/tree-design.vue.js");
|
|
1504
1502
|
}),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./data-origin-tree.vue2.js";
|
|
2
2
|
import "./data-origin-tree.vue3.js";
|
|
3
3
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const DataOrigin = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const DataOrigin = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1fd3d630"]]);
|
|
5
5
|
export {
|
|
6
6
|
DataOrigin as default
|
|
7
7
|
};
|
|
@@ -202,6 +202,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
202
202
|
]),
|
|
203
203
|
_: 1
|
|
204
204
|
}),
|
|
205
|
+
createVNode(_component_el_radio, { value: "beanName" }, {
|
|
206
|
+
default: withCtx(() => [
|
|
207
|
+
createTextVNode("后台bean")
|
|
208
|
+
]),
|
|
209
|
+
_: 1
|
|
210
|
+
}),
|
|
205
211
|
createVNode(_component_el_radio, { value: "dynamicData" }, {
|
|
206
212
|
default: withCtx(() => [
|
|
207
213
|
createTextVNode("动态数据源")
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, computed, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, unref, createCommentVNode, withDirectives, vShow, createElementBlock, Fragment, renderList, normalizeClass, toDisplayString, renderSlot } from "vue";
|
|
2
|
-
import _sfc_main$1 from "../../form/common/dataorigin-input-table.
|
|
2
|
+
import _sfc_main$1 from "../../form/common/dataorigin-input-table.vue.js";
|
|
3
3
|
import { Codemirror } from "vue-codemirror";
|
|
4
4
|
import _sfc_main$6 from "../../workflow/component/combination.vue.js";
|
|
5
5
|
import _sfc_main$5 from "./return-set-table.vue.js";
|
|
@@ -50,10 +50,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
50
50
|
function afterBindIcon(iconType, iconValue, fieldType) {
|
|
51
51
|
if (fieldType == "suf") {
|
|
52
52
|
props.configure.props.base.iconType = iconType;
|
|
53
|
-
props.configure.props.base.
|
|
53
|
+
props.configure.props.base.iconValue = iconValue;
|
|
54
54
|
} else {
|
|
55
55
|
props.configure.props.base.iconType = iconType;
|
|
56
|
-
props.configure.props.base.
|
|
56
|
+
props.configure.props.base.iconValue = iconValue;
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
return (_ctx, _cache) => {
|
|
@@ -81,7 +81,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
81
81
|
default: withCtx(() => [
|
|
82
82
|
createVNode(_component_el_collapse, {
|
|
83
83
|
modelValue: openCollapseItems.value,
|
|
84
|
-
"onUpdate:modelValue": _cache[
|
|
84
|
+
"onUpdate:modelValue": _cache[34] || (_cache[34] = ($event) => openCollapseItems.value = $event),
|
|
85
85
|
style: { "margin-top": "6px" }
|
|
86
86
|
}, {
|
|
87
87
|
default: withCtx(() => [
|
|
@@ -145,6 +145,19 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
145
145
|
]),
|
|
146
146
|
_: 1
|
|
147
147
|
}),
|
|
148
|
+
createVNode(_component_el_form_item, {
|
|
149
|
+
label: "自定义编码",
|
|
150
|
+
class: "amb-design-attr-item"
|
|
151
|
+
}, {
|
|
152
|
+
default: withCtx(() => [
|
|
153
|
+
createVNode(_component_el_input, {
|
|
154
|
+
modelValue: __props.configure.code,
|
|
155
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.code = $event),
|
|
156
|
+
placeholder: "请输入"
|
|
157
|
+
}, null, 8, ["modelValue"])
|
|
158
|
+
]),
|
|
159
|
+
_: 1
|
|
160
|
+
}),
|
|
148
161
|
createVNode(_component_el_form_item, {
|
|
149
162
|
label: "可选择",
|
|
150
163
|
class: "amb-design-attr-item"
|
|
@@ -152,7 +165,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
152
165
|
default: withCtx(() => [
|
|
153
166
|
createVNode(_component_el_radio_group, {
|
|
154
167
|
modelValue: __props.configure.props.base.showCheckbox,
|
|
155
|
-
"onUpdate:modelValue": _cache[
|
|
168
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.showCheckbox = $event),
|
|
156
169
|
class: "ml-4"
|
|
157
170
|
}, {
|
|
158
171
|
default: withCtx(() => [
|
|
@@ -187,7 +200,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
187
200
|
default: withCtx(() => [
|
|
188
201
|
createVNode(_component_el_radio_group, {
|
|
189
202
|
modelValue: __props.configure.props.base.defaultExpandAll,
|
|
190
|
-
"onUpdate:modelValue": _cache[
|
|
203
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.defaultExpandAll = $event),
|
|
191
204
|
class: "ml-4"
|
|
192
205
|
}, {
|
|
193
206
|
default: withCtx(() => [
|
|
@@ -217,7 +230,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
217
230
|
default: withCtx(() => [
|
|
218
231
|
createVNode(_component_el_input, {
|
|
219
232
|
modelValue: __props.configure.props.base.unfoldGrade,
|
|
220
|
-
"onUpdate:modelValue": _cache[
|
|
233
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.unfoldGrade = $event)
|
|
221
234
|
}, null, 8, ["modelValue"])
|
|
222
235
|
]),
|
|
223
236
|
_: 1
|
|
@@ -230,7 +243,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
230
243
|
default: withCtx(() => [
|
|
231
244
|
createVNode(_component_el_radio_group, {
|
|
232
245
|
modelValue: __props.configure.props.base.expandOnClickNode,
|
|
233
|
-
"onUpdate:modelValue": _cache[
|
|
246
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.expandOnClickNode = $event),
|
|
234
247
|
class: "ml-4"
|
|
235
248
|
}, {
|
|
236
249
|
default: withCtx(() => [
|
|
@@ -260,7 +273,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
260
273
|
default: withCtx(() => [
|
|
261
274
|
createVNode(_component_el_radio_group, {
|
|
262
275
|
modelValue: __props.configure.props.base.accordion,
|
|
263
|
-
"onUpdate:modelValue": _cache[
|
|
276
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.base.accordion = $event),
|
|
264
277
|
class: "ml-4"
|
|
265
278
|
}, {
|
|
266
279
|
default: withCtx(() => [
|
|
@@ -289,7 +302,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
289
302
|
default: withCtx(() => [
|
|
290
303
|
createVNode(_component_el_input, {
|
|
291
304
|
modelValue: __props.configure.props.base.retractWidth,
|
|
292
|
-
"onUpdate:modelValue": _cache[
|
|
305
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.configure.props.base.retractWidth = $event),
|
|
293
306
|
title: __props.configure.uuid
|
|
294
307
|
}, null, 8, ["modelValue", "title"])
|
|
295
308
|
]),
|
|
@@ -302,7 +315,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
302
315
|
default: withCtx(() => [
|
|
303
316
|
createVNode(_component_el_radio_group, {
|
|
304
317
|
modelValue: __props.configure.props.base.lazy,
|
|
305
|
-
"onUpdate:modelValue": _cache[
|
|
318
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.base.lazy = $event),
|
|
306
319
|
class: "ml-4"
|
|
307
320
|
}, {
|
|
308
321
|
default: withCtx(() => [
|
|
@@ -332,7 +345,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
332
345
|
createVNode(_sfc_main$1, {
|
|
333
346
|
iconType: __props.configure.props.base.iconType,
|
|
334
347
|
iconValue: __props.configure.props.base.icon,
|
|
335
|
-
"onUpdate:modelValue": _cache[
|
|
348
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = (iconType, iconValue) => afterBindIcon(iconType, iconValue, "suf"))
|
|
336
349
|
}, null, 8, ["iconType", "iconValue"])
|
|
337
350
|
]),
|
|
338
351
|
_: 1
|
|
@@ -344,7 +357,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
344
357
|
default: withCtx(() => [
|
|
345
358
|
createVNode(_component_el_select, {
|
|
346
359
|
modelValue: __props.configure.props.format.contentLogic,
|
|
347
|
-
"onUpdate:modelValue": _cache[
|
|
360
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.configure.props.format.contentLogic = $event),
|
|
348
361
|
filterable: "",
|
|
349
362
|
placeholder: "请选择"
|
|
350
363
|
}, {
|
|
@@ -368,7 +381,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
368
381
|
default: withCtx(() => [
|
|
369
382
|
createVNode(_component_el_radio_group, {
|
|
370
383
|
modelValue: __props.configure.props.base.state,
|
|
371
|
-
"onUpdate:modelValue": _cache[
|
|
384
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.state = $event),
|
|
372
385
|
class: "ml-4"
|
|
373
386
|
}, {
|
|
374
387
|
default: withCtx(() => [
|
|
@@ -413,7 +426,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
413
426
|
default: withCtx(() => [
|
|
414
427
|
createVNode(_component_el_select, {
|
|
415
428
|
modelValue: __props.configure.props.format.type,
|
|
416
|
-
"onUpdate:modelValue": _cache[
|
|
429
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.configure.props.format.type = $event),
|
|
417
430
|
placeholder: "请选择"
|
|
418
431
|
}, {
|
|
419
432
|
default: withCtx(() => [
|
|
@@ -479,7 +492,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
479
492
|
default: withCtx(() => [
|
|
480
493
|
createVNode(_component_el_input, {
|
|
481
494
|
modelValue: __props.configure.props.format.decimalDigit,
|
|
482
|
-
"onUpdate:modelValue": _cache[
|
|
495
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => __props.configure.props.format.decimalDigit = $event)
|
|
483
496
|
}, null, 8, ["modelValue"])
|
|
484
497
|
]),
|
|
485
498
|
_: 1
|
|
@@ -492,7 +505,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
492
505
|
default: withCtx(() => [
|
|
493
506
|
createVNode(_component_el_switch, {
|
|
494
507
|
modelValue: __props.configure.props.format.scientific,
|
|
495
|
-
"onUpdate:modelValue": _cache[
|
|
508
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.format.scientific = $event),
|
|
496
509
|
"active-text": "使用",
|
|
497
510
|
"inactive-text": "不使用"
|
|
498
511
|
}, null, 8, ["modelValue"])
|
|
@@ -507,7 +520,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
507
520
|
default: withCtx(() => [
|
|
508
521
|
createVNode(_component_el_input, {
|
|
509
522
|
modelValue: __props.configure.props.format.scientificNum,
|
|
510
|
-
"onUpdate:modelValue": _cache[
|
|
523
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.configure.props.format.scientificNum = $event)
|
|
511
524
|
}, null, 8, ["modelValue"])
|
|
512
525
|
]),
|
|
513
526
|
_: 1
|
|
@@ -520,7 +533,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
520
533
|
default: withCtx(() => [
|
|
521
534
|
createVNode(_component_el_switch, {
|
|
522
535
|
modelValue: __props.configure.props.format.thousandsSeparator,
|
|
523
|
-
"onUpdate:modelValue": _cache[
|
|
536
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => __props.configure.props.format.thousandsSeparator = $event),
|
|
524
537
|
"active-text": "使用",
|
|
525
538
|
"inactive-text": "不使用"
|
|
526
539
|
}, null, 8, ["modelValue"])
|
|
@@ -535,7 +548,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
535
548
|
default: withCtx(() => [
|
|
536
549
|
createVNode(_component_el_input, {
|
|
537
550
|
modelValue: __props.configure.props.format.symbol,
|
|
538
|
-
"onUpdate:modelValue": _cache[
|
|
551
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => __props.configure.props.format.symbol = $event)
|
|
539
552
|
}, null, 8, ["modelValue"])
|
|
540
553
|
]),
|
|
541
554
|
_: 1
|
|
@@ -548,7 +561,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
548
561
|
default: withCtx(() => [
|
|
549
562
|
createVNode(_component_el_select, {
|
|
550
563
|
modelValue: __props.configure.props.format.currencySymbol,
|
|
551
|
-
"onUpdate:modelValue": _cache[
|
|
564
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => __props.configure.props.format.currencySymbol = $event),
|
|
552
565
|
placeholder: "Select"
|
|
553
566
|
}, {
|
|
554
567
|
default: withCtx(() => [
|
|
@@ -574,7 +587,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
574
587
|
default: withCtx(() => [
|
|
575
588
|
createVNode(_component_el_select, {
|
|
576
589
|
modelValue: __props.configure.props.format.dataType,
|
|
577
|
-
"onUpdate:modelValue": _cache[
|
|
590
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => __props.configure.props.format.dataType = $event),
|
|
578
591
|
placeholder: "Select"
|
|
579
592
|
}, {
|
|
580
593
|
default: withCtx(() => [
|
|
@@ -628,7 +641,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
628
641
|
default: withCtx(() => [
|
|
629
642
|
createVNode(_component_el_select, {
|
|
630
643
|
modelValue: __props.configure.props.format.timeType,
|
|
631
|
-
"onUpdate:modelValue": _cache[
|
|
644
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => __props.configure.props.format.timeType = $event),
|
|
632
645
|
placeholder: "Select"
|
|
633
646
|
}, {
|
|
634
647
|
default: withCtx(() => [
|
|
@@ -678,7 +691,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
678
691
|
default: withCtx(() => [
|
|
679
692
|
createVNode(_component_el_input, {
|
|
680
693
|
modelValue: __props.configure.props.format.customControl,
|
|
681
|
-
"onUpdate:modelValue": _cache[
|
|
694
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => __props.configure.props.format.customControl = $event)
|
|
682
695
|
}, null, 8, ["modelValue"])
|
|
683
696
|
]),
|
|
684
697
|
_: 1
|
|
@@ -696,7 +709,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
696
709
|
default: withCtx(() => [
|
|
697
710
|
createVNode(_component_IconSetDialog, {
|
|
698
711
|
modelValue: __props.configure.props.format.icon,
|
|
699
|
-
"onUpdate:modelValue": _cache[
|
|
712
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => __props.configure.props.format.icon = $event)
|
|
700
713
|
}, null, 8, ["modelValue"])
|
|
701
714
|
]),
|
|
702
715
|
_: 1
|
|
@@ -709,7 +722,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
709
722
|
default: withCtx(() => [
|
|
710
723
|
createVNode(_component_el_switch, {
|
|
711
724
|
modelValue: __props.configure.props.format.position,
|
|
712
|
-
"onUpdate:modelValue": _cache[
|
|
725
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => __props.configure.props.format.position = $event),
|
|
713
726
|
"active-text": "后缀",
|
|
714
727
|
"inactive-text": "前缀",
|
|
715
728
|
"active-value": "suf",
|
|
@@ -726,7 +739,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
726
739
|
default: withCtx(() => [
|
|
727
740
|
createVNode(_component_el_input, {
|
|
728
741
|
modelValue: __props.configure.props.format.event,
|
|
729
|
-
"onUpdate:modelValue": _cache[
|
|
742
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => __props.configure.props.format.event = $event)
|
|
730
743
|
}, null, 8, ["modelValue"])
|
|
731
744
|
]),
|
|
732
745
|
_: 1
|
|
@@ -739,7 +752,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
739
752
|
default: withCtx(() => [
|
|
740
753
|
createVNode(_component_el_input, {
|
|
741
754
|
modelValue: __props.configure.props.format.customControl,
|
|
742
|
-
"onUpdate:modelValue": _cache[
|
|
755
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => __props.configure.props.format.customControl = $event)
|
|
743
756
|
}, null, 8, ["modelValue"])
|
|
744
757
|
]),
|
|
745
758
|
_: 1
|
|
@@ -752,7 +765,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
752
765
|
default: withCtx(() => [
|
|
753
766
|
createVNode(_component_el_switch, {
|
|
754
767
|
modelValue: __props.configure.props.format.multiple,
|
|
755
|
-
"onUpdate:modelValue": _cache[
|
|
768
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => __props.configure.props.format.multiple = $event)
|
|
756
769
|
}, null, 8, ["modelValue"])
|
|
757
770
|
]),
|
|
758
771
|
_: 1
|
|
@@ -765,7 +778,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
765
778
|
default: withCtx(() => [
|
|
766
779
|
createVNode(_component_el_input, {
|
|
767
780
|
modelValue: __props.configure.props.format.accept,
|
|
768
|
-
"onUpdate:modelValue": _cache[
|
|
781
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = ($event) => __props.configure.props.format.accept = $event)
|
|
769
782
|
}, null, 8, ["modelValue"])
|
|
770
783
|
]),
|
|
771
784
|
_: 1
|
|
@@ -778,7 +791,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
778
791
|
default: withCtx(() => [
|
|
779
792
|
createVNode(_component_el_input_number, {
|
|
780
793
|
modelValue: __props.configure.props.format.limitFileSize,
|
|
781
|
-
"onUpdate:modelValue": _cache[
|
|
794
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = ($event) => __props.configure.props.format.limitFileSize = $event),
|
|
782
795
|
min: 1
|
|
783
796
|
}, null, 8, ["modelValue"])
|
|
784
797
|
]),
|
|
@@ -791,7 +804,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
791
804
|
default: withCtx(() => [
|
|
792
805
|
createVNode(_component_el_input, {
|
|
793
806
|
modelValue: __props.configure.props.format.childAnnexDataTableCode,
|
|
794
|
-
"onUpdate:modelValue": _cache[
|
|
807
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = ($event) => __props.configure.props.format.childAnnexDataTableCode = $event),
|
|
795
808
|
onClick: _ctx.openSelectDataTable,
|
|
796
809
|
clearable: ""
|
|
797
810
|
}, {
|
|
@@ -814,7 +827,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
814
827
|
default: withCtx(() => [
|
|
815
828
|
createVNode(_component_VariateSelect, {
|
|
816
829
|
prop: __props.configure.props.format.showName,
|
|
817
|
-
"onUpdate:prop": _cache[
|
|
830
|
+
"onUpdate:prop": _cache[31] || (_cache[31] = ($event) => __props.configure.props.format.showName = $event),
|
|
818
831
|
tableConfigure: _ctx.tableConfigure
|
|
819
832
|
}, null, 8, ["prop", "tableConfigure"])
|
|
820
833
|
]),
|
|
@@ -828,7 +841,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
828
841
|
default: withCtx(() => [
|
|
829
842
|
createVNode(_component_VariateSelect, {
|
|
830
843
|
prop: __props.configure.props.format.serverName,
|
|
831
|
-
"onUpdate:prop": _cache[
|
|
844
|
+
"onUpdate:prop": _cache[32] || (_cache[32] = ($event) => __props.configure.props.format.serverName = $event),
|
|
832
845
|
tableConfigure: _ctx.tableConfigure
|
|
833
846
|
}, null, 8, ["prop", "tableConfigure"])
|
|
834
847
|
]),
|
|
@@ -857,7 +870,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
857
870
|
default: withCtx(() => [
|
|
858
871
|
createVNode(_component_el_checkbox, {
|
|
859
872
|
modelValue: __props.configure.props.verification.required,
|
|
860
|
-
"onUpdate:modelValue": _cache[
|
|
873
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = ($event) => __props.configure.props.verification.required = $event),
|
|
861
874
|
label: "必填"
|
|
862
875
|
}, null, 8, ["modelValue"])
|
|
863
876
|
]),
|
|
@@ -12,8 +12,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
12
12
|
props.configure.title = "";
|
|
13
13
|
}
|
|
14
14
|
const defaultProps = {
|
|
15
|
+
id: "nodeId",
|
|
16
|
+
label: "name",
|
|
15
17
|
children: "children",
|
|
16
|
-
|
|
18
|
+
isLeaf: "leaf",
|
|
19
|
+
disabled: "disabled",
|
|
20
|
+
nodeType: "nodeType",
|
|
21
|
+
iconType: "iconType",
|
|
22
|
+
iconValue: "iconValue"
|
|
17
23
|
};
|
|
18
24
|
const designStyle = ref({});
|
|
19
25
|
const designClass = ref("");
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createCommentVNode, withDirectives, createTextVNode, createElementBlock, Fragment, renderList, vShow, normalizeClass } from "vue";
|
|
2
|
-
import _sfc_main$3 from "./dataorigin-input-table.
|
|
2
|
+
import _sfc_main$3 from "./dataorigin-input-table.vue.js";
|
|
3
3
|
import _sfc_main$2 from "./condition.vue.js";
|
|
4
4
|
import _sfc_main$1 from "./row-ul-li.vue.js";
|
|
5
5
|
import "uuid";
|
|
@@ -1,4 +1,155 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, Fragment, createVNode, withCtx, unref, createElementVNode, createTextVNode } from "vue";
|
|
2
|
+
import { Search } from "@element-plus/icons-vue";
|
|
3
|
+
const _hoisted_1 = { class: "dialog-footer" };
|
|
4
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
+
__name: "dataorigin-input-table",
|
|
6
|
+
props: {
|
|
7
|
+
modelValue: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: ""
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
emits: ["update:modelValue"],
|
|
13
|
+
setup(__props, { emit: __emit }) {
|
|
14
|
+
const props = __props;
|
|
15
|
+
const inputValue = ref(props.modelValue);
|
|
16
|
+
const emit = __emit;
|
|
17
|
+
const tableData = [
|
|
18
|
+
{
|
|
19
|
+
id: 1,
|
|
20
|
+
date: "2016-05-03",
|
|
21
|
+
name: "Tom",
|
|
22
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: 2,
|
|
26
|
+
date: "2016-05-02",
|
|
27
|
+
name: "Tom",
|
|
28
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: 3,
|
|
32
|
+
date: "2016-05-04",
|
|
33
|
+
name: "Tom",
|
|
34
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
id: 4,
|
|
38
|
+
date: "2016-05-01",
|
|
39
|
+
name: "Tom",
|
|
40
|
+
address: "No. 189, Grove St, Los Angeles"
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
const dialogVisible = ref(false);
|
|
44
|
+
const selectData = ref([]);
|
|
45
|
+
watch(() => props.modelValue, (newVal) => {
|
|
46
|
+
inputValue.value = newVal;
|
|
47
|
+
});
|
|
48
|
+
function confirm() {
|
|
49
|
+
if (selectData.value.length > 0) {
|
|
50
|
+
let str = "";
|
|
51
|
+
selectData.value.forEach((item) => {
|
|
52
|
+
str = str + item.name + ",";
|
|
53
|
+
});
|
|
54
|
+
str = str.substring(0, str.length - 1);
|
|
55
|
+
emit("update:modelValue", str);
|
|
56
|
+
dialogVisible.value = false;
|
|
57
|
+
} else {
|
|
58
|
+
dialogVisible.value = false;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
function handleSelectionChange(selection) {
|
|
62
|
+
selectData.value = selection;
|
|
63
|
+
}
|
|
64
|
+
function inputClick() {
|
|
65
|
+
dialogVisible.value = true;
|
|
66
|
+
}
|
|
67
|
+
return (_ctx, _cache) => {
|
|
68
|
+
const _component_el_icon = resolveComponent("el-icon");
|
|
69
|
+
const _component_el_input = resolveComponent("el-input");
|
|
70
|
+
const _component_el_table_column = resolveComponent("el-table-column");
|
|
71
|
+
const _component_el_table = resolveComponent("el-table");
|
|
72
|
+
const _component_el_button = resolveComponent("el-button");
|
|
73
|
+
const _component_el_dialog = resolveComponent("el-dialog");
|
|
74
|
+
return openBlock(), createElementBlock(Fragment, null, [
|
|
75
|
+
createVNode(_component_el_input, {
|
|
76
|
+
modelValue: inputValue.value,
|
|
77
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
|
|
78
|
+
placeholder: "请选择",
|
|
79
|
+
onClick: inputClick
|
|
80
|
+
}, {
|
|
81
|
+
suffix: withCtx(() => [
|
|
82
|
+
createVNode(_component_el_icon, { onClick: inputClick }, {
|
|
83
|
+
default: withCtx(() => [
|
|
84
|
+
createVNode(unref(Search))
|
|
85
|
+
]),
|
|
86
|
+
_: 1
|
|
87
|
+
})
|
|
88
|
+
]),
|
|
89
|
+
_: 1
|
|
90
|
+
}, 8, ["modelValue"]),
|
|
91
|
+
createVNode(_component_el_dialog, {
|
|
92
|
+
modelValue: dialogVisible.value,
|
|
93
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => dialogVisible.value = $event),
|
|
94
|
+
title: "Tips",
|
|
95
|
+
width: "500"
|
|
96
|
+
}, {
|
|
97
|
+
footer: withCtx(() => [
|
|
98
|
+
createElementVNode("div", _hoisted_1, [
|
|
99
|
+
createVNode(_component_el_button, {
|
|
100
|
+
onClick: _cache[1] || (_cache[1] = ($event) => dialogVisible.value = false)
|
|
101
|
+
}, {
|
|
102
|
+
default: withCtx(() => [
|
|
103
|
+
createTextVNode("取消")
|
|
104
|
+
]),
|
|
105
|
+
_: 1
|
|
106
|
+
}),
|
|
107
|
+
createVNode(_component_el_button, {
|
|
108
|
+
type: "primary",
|
|
109
|
+
onClick: confirm
|
|
110
|
+
}, {
|
|
111
|
+
default: withCtx(() => [
|
|
112
|
+
createTextVNode(" 确定 ")
|
|
113
|
+
]),
|
|
114
|
+
_: 1
|
|
115
|
+
})
|
|
116
|
+
])
|
|
117
|
+
]),
|
|
118
|
+
default: withCtx(() => [
|
|
119
|
+
createVNode(_component_el_table, {
|
|
120
|
+
data: tableData,
|
|
121
|
+
style: { "width": "100%" },
|
|
122
|
+
onSelectionChange: handleSelectionChange
|
|
123
|
+
}, {
|
|
124
|
+
default: withCtx(() => [
|
|
125
|
+
createVNode(_component_el_table_column, {
|
|
126
|
+
type: "selection",
|
|
127
|
+
width: "55"
|
|
128
|
+
}),
|
|
129
|
+
createVNode(_component_el_table_column, {
|
|
130
|
+
prop: "date",
|
|
131
|
+
label: "Date",
|
|
132
|
+
width: "180"
|
|
133
|
+
}),
|
|
134
|
+
createVNode(_component_el_table_column, {
|
|
135
|
+
prop: "name",
|
|
136
|
+
label: "Name",
|
|
137
|
+
width: "180"
|
|
138
|
+
}),
|
|
139
|
+
createVNode(_component_el_table_column, {
|
|
140
|
+
prop: "address",
|
|
141
|
+
label: "Address"
|
|
142
|
+
})
|
|
143
|
+
]),
|
|
144
|
+
_: 1
|
|
145
|
+
})
|
|
146
|
+
]),
|
|
147
|
+
_: 1
|
|
148
|
+
}, 8, ["modelValue"])
|
|
149
|
+
], 64);
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
});
|
|
2
153
|
export {
|
|
3
154
|
_sfc_main as default
|
|
4
155
|
};
|
package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js
CHANGED
|
@@ -1,155 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { Search } from "@element-plus/icons-vue";
|
|
3
|
-
const _hoisted_1 = { class: "dialog-footer" };
|
|
4
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
5
|
-
__name: "dataorigin-input-table",
|
|
6
|
-
props: {
|
|
7
|
-
modelValue: {
|
|
8
|
-
type: String,
|
|
9
|
-
default: ""
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
emits: ["update:modelValue"],
|
|
13
|
-
setup(__props, { emit: __emit }) {
|
|
14
|
-
const props = __props;
|
|
15
|
-
const inputValue = ref(props.modelValue);
|
|
16
|
-
const emit = __emit;
|
|
17
|
-
const tableData = [
|
|
18
|
-
{
|
|
19
|
-
id: 1,
|
|
20
|
-
date: "2016-05-03",
|
|
21
|
-
name: "Tom",
|
|
22
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
id: 2,
|
|
26
|
-
date: "2016-05-02",
|
|
27
|
-
name: "Tom",
|
|
28
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
id: 3,
|
|
32
|
-
date: "2016-05-04",
|
|
33
|
-
name: "Tom",
|
|
34
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
id: 4,
|
|
38
|
-
date: "2016-05-01",
|
|
39
|
-
name: "Tom",
|
|
40
|
-
address: "No. 189, Grove St, Los Angeles"
|
|
41
|
-
}
|
|
42
|
-
];
|
|
43
|
-
const dialogVisible = ref(false);
|
|
44
|
-
const selectData = ref([]);
|
|
45
|
-
watch(() => props.modelValue, (newVal) => {
|
|
46
|
-
inputValue.value = newVal;
|
|
47
|
-
});
|
|
48
|
-
function confirm() {
|
|
49
|
-
if (selectData.value.length > 0) {
|
|
50
|
-
let str = "";
|
|
51
|
-
selectData.value.forEach((item) => {
|
|
52
|
-
str = str + item.name + ",";
|
|
53
|
-
});
|
|
54
|
-
str = str.substring(0, str.length - 1);
|
|
55
|
-
emit("update:modelValue", str);
|
|
56
|
-
dialogVisible.value = false;
|
|
57
|
-
} else {
|
|
58
|
-
dialogVisible.value = false;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
function handleSelectionChange(selection) {
|
|
62
|
-
selectData.value = selection;
|
|
63
|
-
}
|
|
64
|
-
function inputClick() {
|
|
65
|
-
dialogVisible.value = true;
|
|
66
|
-
}
|
|
67
|
-
return (_ctx, _cache) => {
|
|
68
|
-
const _component_el_icon = resolveComponent("el-icon");
|
|
69
|
-
const _component_el_input = resolveComponent("el-input");
|
|
70
|
-
const _component_el_table_column = resolveComponent("el-table-column");
|
|
71
|
-
const _component_el_table = resolveComponent("el-table");
|
|
72
|
-
const _component_el_button = resolveComponent("el-button");
|
|
73
|
-
const _component_el_dialog = resolveComponent("el-dialog");
|
|
74
|
-
return openBlock(), createElementBlock(Fragment, null, [
|
|
75
|
-
createVNode(_component_el_input, {
|
|
76
|
-
modelValue: inputValue.value,
|
|
77
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
|
|
78
|
-
placeholder: "请选择",
|
|
79
|
-
onClick: inputClick
|
|
80
|
-
}, {
|
|
81
|
-
suffix: withCtx(() => [
|
|
82
|
-
createVNode(_component_el_icon, { onClick: inputClick }, {
|
|
83
|
-
default: withCtx(() => [
|
|
84
|
-
createVNode(unref(Search))
|
|
85
|
-
]),
|
|
86
|
-
_: 1
|
|
87
|
-
})
|
|
88
|
-
]),
|
|
89
|
-
_: 1
|
|
90
|
-
}, 8, ["modelValue"]),
|
|
91
|
-
createVNode(_component_el_dialog, {
|
|
92
|
-
modelValue: dialogVisible.value,
|
|
93
|
-
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => dialogVisible.value = $event),
|
|
94
|
-
title: "Tips",
|
|
95
|
-
width: "500"
|
|
96
|
-
}, {
|
|
97
|
-
footer: withCtx(() => [
|
|
98
|
-
createElementVNode("div", _hoisted_1, [
|
|
99
|
-
createVNode(_component_el_button, {
|
|
100
|
-
onClick: _cache[1] || (_cache[1] = ($event) => dialogVisible.value = false)
|
|
101
|
-
}, {
|
|
102
|
-
default: withCtx(() => [
|
|
103
|
-
createTextVNode("取消")
|
|
104
|
-
]),
|
|
105
|
-
_: 1
|
|
106
|
-
}),
|
|
107
|
-
createVNode(_component_el_button, {
|
|
108
|
-
type: "primary",
|
|
109
|
-
onClick: confirm
|
|
110
|
-
}, {
|
|
111
|
-
default: withCtx(() => [
|
|
112
|
-
createTextVNode(" 确定 ")
|
|
113
|
-
]),
|
|
114
|
-
_: 1
|
|
115
|
-
})
|
|
116
|
-
])
|
|
117
|
-
]),
|
|
118
|
-
default: withCtx(() => [
|
|
119
|
-
createVNode(_component_el_table, {
|
|
120
|
-
data: tableData,
|
|
121
|
-
style: { "width": "100%" },
|
|
122
|
-
onSelectionChange: handleSelectionChange
|
|
123
|
-
}, {
|
|
124
|
-
default: withCtx(() => [
|
|
125
|
-
createVNode(_component_el_table_column, {
|
|
126
|
-
type: "selection",
|
|
127
|
-
width: "55"
|
|
128
|
-
}),
|
|
129
|
-
createVNode(_component_el_table_column, {
|
|
130
|
-
prop: "date",
|
|
131
|
-
label: "Date",
|
|
132
|
-
width: "180"
|
|
133
|
-
}),
|
|
134
|
-
createVNode(_component_el_table_column, {
|
|
135
|
-
prop: "name",
|
|
136
|
-
label: "Name",
|
|
137
|
-
width: "180"
|
|
138
|
-
}),
|
|
139
|
-
createVNode(_component_el_table_column, {
|
|
140
|
-
prop: "address",
|
|
141
|
-
label: "Address"
|
|
142
|
-
})
|
|
143
|
-
]),
|
|
144
|
-
_: 1
|
|
145
|
-
})
|
|
146
|
-
]),
|
|
147
|
-
_: 1
|
|
148
|
-
}, 8, ["modelValue"])
|
|
149
|
-
], 64);
|
|
150
|
-
};
|
|
151
|
-
}
|
|
152
|
-
});
|
|
1
|
+
import _sfc_main from "./dataorigin-input-table.vue.js";
|
|
153
2
|
export {
|
|
154
3
|
_sfc_main as default
|
|
155
4
|
};
|
package/dist/es/style.css
CHANGED
|
@@ -674,6 +674,14 @@ fieldset.amb-design-item-selected {
|
|
|
674
674
|
[data-v-511b453b]::-webkit-scrollbar-thumb:hover {
|
|
675
675
|
background-color: grey;
|
|
676
676
|
}
|
|
677
|
+
|
|
678
|
+
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
679
|
+
cursor: default;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.el-select__wrapper.is-disabled{
|
|
683
|
+
cursor: default;
|
|
684
|
+
}
|
|
677
685
|
.el-tree-node__content {
|
|
678
686
|
height: 34px !important;
|
|
679
687
|
}
|
|
@@ -3146,14 +3154,6 @@ fieldset.amb-design-item-selected {
|
|
|
3146
3154
|
padding: 10px;
|
|
3147
3155
|
font-weight: bold;
|
|
3148
3156
|
}
|
|
3149
|
-
|
|
3150
|
-
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
3151
|
-
cursor: default;
|
|
3152
|
-
}
|
|
3153
|
-
|
|
3154
|
-
.el-select__wrapper.is-disabled{
|
|
3155
|
-
cursor: default;
|
|
3156
|
-
}
|
|
3157
3157
|
.el-tree-node__content {
|
|
3158
3158
|
height: 34px !important;
|
|
3159
3159
|
}
|
|
@@ -9334,56 +9334,6 @@ fieldset.amb-design-item-selected {
|
|
|
9334
9334
|
padding: 10px;
|
|
9335
9335
|
font-weight: bold;
|
|
9336
9336
|
}
|
|
9337
|
-
|
|
9338
|
-
/*不显示列样式*/
|
|
9339
|
-
.hiddenBorder {
|
|
9340
|
-
border-right: solid 1px #ebebeb !important;
|
|
9341
|
-
border-left: solid 1px #ebebeb !important;
|
|
9342
|
-
background-color: #ebebeb !important;
|
|
9343
|
-
}
|
|
9344
|
-
/*选中列样式*/
|
|
9345
|
-
.addBorder {
|
|
9346
|
-
border-right: solid 1px #5893ef !important;
|
|
9347
|
-
border-left: solid 1px #5893ef !important;
|
|
9348
|
-
background-color: #5893ef !important;
|
|
9349
|
-
color: #ffffff;
|
|
9350
|
-
}
|
|
9351
|
-
.ghost {
|
|
9352
|
-
opacity: 0.5;
|
|
9353
|
-
background: #c8ebfb;
|
|
9354
|
-
}
|
|
9355
|
-
|
|
9356
|
-
li[data-v-5581ec9f] {
|
|
9357
|
-
color: #333;
|
|
9358
|
-
}
|
|
9359
|
-
.context-menu[data-v-5581ec9f] {
|
|
9360
|
-
position: fixed;
|
|
9361
|
-
background: #fff;
|
|
9362
|
-
z-index: 999;
|
|
9363
|
-
padding: 5px;
|
|
9364
|
-
margin: 0;
|
|
9365
|
-
margin-top: 30px;
|
|
9366
|
-
}
|
|
9367
|
-
.context-menu li[data-v-5581ec9f] {
|
|
9368
|
-
min-width: 75px;
|
|
9369
|
-
height: 28px;
|
|
9370
|
-
line-height: 28px;
|
|
9371
|
-
text-align: left;
|
|
9372
|
-
color: #1a1a1a;
|
|
9373
|
-
cursor: pointer;
|
|
9374
|
-
}
|
|
9375
|
-
.context-menu li[data-v-5581ec9f]:hover {
|
|
9376
|
-
background: #5893ef;
|
|
9377
|
-
color: #fff;
|
|
9378
|
-
}
|
|
9379
|
-
.context-menu[data-v-5581ec9f] {
|
|
9380
|
-
border: 1px solid #eee;
|
|
9381
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
9382
|
-
border-radius: 5px;
|
|
9383
|
-
}
|
|
9384
|
-
li[data-v-5581ec9f] {
|
|
9385
|
-
list-style-type: none;
|
|
9386
|
-
}
|
|
9387
9337
|
.el-tree-node__content {
|
|
9388
9338
|
height: 34px !important;
|
|
9389
9339
|
}
|
|
@@ -10002,6 +9952,56 @@ fieldset.amb-design-item-selected {
|
|
|
10002
9952
|
padding: 10px;
|
|
10003
9953
|
font-weight: bold;
|
|
10004
9954
|
}
|
|
9955
|
+
|
|
9956
|
+
/*不显示列样式*/
|
|
9957
|
+
.hiddenBorder {
|
|
9958
|
+
border-right: solid 1px #ebebeb !important;
|
|
9959
|
+
border-left: solid 1px #ebebeb !important;
|
|
9960
|
+
background-color: #ebebeb !important;
|
|
9961
|
+
}
|
|
9962
|
+
/*选中列样式*/
|
|
9963
|
+
.addBorder {
|
|
9964
|
+
border-right: solid 1px #5893ef !important;
|
|
9965
|
+
border-left: solid 1px #5893ef !important;
|
|
9966
|
+
background-color: #5893ef !important;
|
|
9967
|
+
color: #ffffff;
|
|
9968
|
+
}
|
|
9969
|
+
.ghost {
|
|
9970
|
+
opacity: 0.5;
|
|
9971
|
+
background: #c8ebfb;
|
|
9972
|
+
}
|
|
9973
|
+
|
|
9974
|
+
li[data-v-5581ec9f] {
|
|
9975
|
+
color: #333;
|
|
9976
|
+
}
|
|
9977
|
+
.context-menu[data-v-5581ec9f] {
|
|
9978
|
+
position: fixed;
|
|
9979
|
+
background: #fff;
|
|
9980
|
+
z-index: 999;
|
|
9981
|
+
padding: 5px;
|
|
9982
|
+
margin: 0;
|
|
9983
|
+
margin-top: 30px;
|
|
9984
|
+
}
|
|
9985
|
+
.context-menu li[data-v-5581ec9f] {
|
|
9986
|
+
min-width: 75px;
|
|
9987
|
+
height: 28px;
|
|
9988
|
+
line-height: 28px;
|
|
9989
|
+
text-align: left;
|
|
9990
|
+
color: #1a1a1a;
|
|
9991
|
+
cursor: pointer;
|
|
9992
|
+
}
|
|
9993
|
+
.context-menu li[data-v-5581ec9f]:hover {
|
|
9994
|
+
background: #5893ef;
|
|
9995
|
+
color: #fff;
|
|
9996
|
+
}
|
|
9997
|
+
.context-menu[data-v-5581ec9f] {
|
|
9998
|
+
border: 1px solid #eee;
|
|
9999
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
10000
|
+
border-radius: 5px;
|
|
10001
|
+
}
|
|
10002
|
+
li[data-v-5581ec9f] {
|
|
10003
|
+
list-style-type: none;
|
|
10004
|
+
}
|
|
10005
10005
|
.el-tree-node__content {
|
|
10006
10006
|
height: 34px !important;
|
|
10007
10007
|
}
|
|
@@ -16182,6 +16182,10 @@ fieldset.amb-design-item-selected {
|
|
|
16182
16182
|
padding: 10px;
|
|
16183
16183
|
font-weight: bold;
|
|
16184
16184
|
}
|
|
16185
|
+
|
|
16186
|
+
[data-v-bab42532] .el-form-item__label {
|
|
16187
|
+
padding: 0;
|
|
16188
|
+
}
|
|
16185
16189
|
.el-tree-node__content {
|
|
16186
16190
|
height: 34px !important;
|
|
16187
16191
|
}
|
|
@@ -17469,10 +17473,6 @@ li[data-v-a555cba7] {
|
|
|
17469
17473
|
list-style-type: none;
|
|
17470
17474
|
}
|
|
17471
17475
|
|
|
17472
|
-
[data-v-bab42532] .el-form-item__label {
|
|
17473
|
-
padding: 0;
|
|
17474
|
-
}
|
|
17475
|
-
|
|
17476
17476
|
.amb-design-attr-header[data-v-226997f7] {
|
|
17477
17477
|
position: sticky;
|
|
17478
17478
|
position: -webkit-sticky;
|
|
@@ -17504,6 +17504,11 @@ li[data-v-a555cba7] {
|
|
|
17504
17504
|
border: 1px solid rgba(88, 147, 239);
|
|
17505
17505
|
}
|
|
17506
17506
|
|
|
17507
|
+
.seleteSort[data-v-3336d6c5] {
|
|
17508
|
+
border-radius: 5px;
|
|
17509
|
+
border: 1px solid rgba(88, 147, 239);
|
|
17510
|
+
}
|
|
17511
|
+
|
|
17507
17512
|
.event-item[data-v-c7ab7527] {
|
|
17508
17513
|
font-size: 12px;
|
|
17509
17514
|
border-bottom: 2px dashed #f5f6f8;
|
|
@@ -17520,8 +17525,57 @@ li[data-v-a555cba7] {
|
|
|
17520
17525
|
border: 1px solid rgba(88, 147, 239);
|
|
17521
17526
|
}
|
|
17522
17527
|
|
|
17523
|
-
|
|
17524
|
-
|
|
17528
|
+
li[data-v-4fd4369c] {
|
|
17529
|
+
color: #333;
|
|
17530
|
+
}
|
|
17531
|
+
.context-menu[data-v-4fd4369c] {
|
|
17532
|
+
position: fixed;
|
|
17533
|
+
background: #fff;
|
|
17534
|
+
z-index: 999;
|
|
17535
|
+
padding: 5px;
|
|
17536
|
+
margin: 0;
|
|
17537
|
+
margin-top: 30px;
|
|
17538
|
+
}
|
|
17539
|
+
.context-menu li[data-v-4fd4369c] {
|
|
17540
|
+
min-width: 75px;
|
|
17541
|
+
height: 28px;
|
|
17542
|
+
line-height: 28px;
|
|
17543
|
+
text-align: left;
|
|
17544
|
+
color: #1a1a1a;
|
|
17545
|
+
cursor: pointer;
|
|
17546
|
+
}
|
|
17547
|
+
|
|
17548
|
+
/*.context-menu li:hover {*/
|
|
17549
|
+
/* background: #5893ef;*/
|
|
17550
|
+
/* color: #fff;*/
|
|
17551
|
+
/*}*/
|
|
17552
|
+
.context-menuLi[data-v-4fd4369c]:hover {
|
|
17553
|
+
background: #5893ef;
|
|
17554
|
+
color: #fff;
|
|
17555
|
+
}
|
|
17556
|
+
.context-menu[data-v-4fd4369c] {
|
|
17557
|
+
border: 1px solid #eee;
|
|
17558
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
17559
|
+
border-radius: 5px;
|
|
17560
|
+
}
|
|
17561
|
+
li[data-v-4fd4369c] {
|
|
17562
|
+
list-style-type: none;
|
|
17563
|
+
}
|
|
17564
|
+
|
|
17565
|
+
.stateBtn[data-v-ae2798fb]{
|
|
17566
|
+
display: flex;
|
|
17567
|
+
}
|
|
17568
|
+
.stateText[data-v-ae2798fb]{
|
|
17569
|
+
margin-left: 10px;
|
|
17570
|
+
color: #7b7b7b;
|
|
17571
|
+
}
|
|
17572
|
+
|
|
17573
|
+
.seleteSort[data-v-1fd3d630] {
|
|
17574
|
+
border-radius: 5px;
|
|
17575
|
+
border: 1px solid rgba(88, 147, 239);
|
|
17576
|
+
}
|
|
17577
|
+
[data-v-1fd3d630] .el-select__selection{
|
|
17578
|
+
display: inline-block;
|
|
17525
17579
|
}
|
|
17526
17580
|
|
|
17527
17581
|
.editorTool[data-v-bc0d50cd] {
|
|
@@ -17537,14 +17591,6 @@ li[data-v-a555cba7] {
|
|
|
17537
17591
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
17538
17592
|
}
|
|
17539
17593
|
|
|
17540
|
-
.seleteSort[data-v-1dada466] {
|
|
17541
|
-
border-radius: 5px;
|
|
17542
|
-
border: 1px solid rgba(88, 147, 239);
|
|
17543
|
-
}
|
|
17544
|
-
[data-v-1dada466] .el-select__selection{
|
|
17545
|
-
display: inline-block;
|
|
17546
|
-
}
|
|
17547
|
-
|
|
17548
17594
|
.icon-set-center-body[data-v-181d1ce8]{
|
|
17549
17595
|
display: grid;
|
|
17550
17596
|
grid-template-columns:repeat(5,1fr);
|
|
@@ -17582,54 +17628,12 @@ li[data-v-a555cba7] {
|
|
|
17582
17628
|
margin-bottom: 20px;
|
|
17583
17629
|
}
|
|
17584
17630
|
|
|
17585
|
-
.
|
|
17586
|
-
|
|
17587
|
-
border: 1px solid rgba(88, 147, 239);
|
|
17588
|
-
}
|
|
17589
|
-
|
|
17590
|
-
.stateBtn[data-v-ae2798fb]{
|
|
17591
|
-
display: flex;
|
|
17592
|
-
}
|
|
17593
|
-
.stateText[data-v-ae2798fb]{
|
|
17594
|
-
margin-left: 10px;
|
|
17595
|
-
color: #7b7b7b;
|
|
17631
|
+
.el-tag[data-v-665d3bf4]{
|
|
17632
|
+
margin-left: 10px;
|
|
17596
17633
|
}
|
|
17597
17634
|
|
|
17598
|
-
|
|
17599
|
-
|
|
17600
|
-
}
|
|
17601
|
-
.context-menu[data-v-4fd4369c] {
|
|
17602
|
-
position: fixed;
|
|
17603
|
-
background: #fff;
|
|
17604
|
-
z-index: 999;
|
|
17605
|
-
padding: 5px;
|
|
17606
|
-
margin: 0;
|
|
17607
|
-
margin-top: 30px;
|
|
17608
|
-
}
|
|
17609
|
-
.context-menu li[data-v-4fd4369c] {
|
|
17610
|
-
min-width: 75px;
|
|
17611
|
-
height: 28px;
|
|
17612
|
-
line-height: 28px;
|
|
17613
|
-
text-align: left;
|
|
17614
|
-
color: #1a1a1a;
|
|
17615
|
-
cursor: pointer;
|
|
17616
|
-
}
|
|
17617
|
-
|
|
17618
|
-
/*.context-menu li:hover {*/
|
|
17619
|
-
/* background: #5893ef;*/
|
|
17620
|
-
/* color: #fff;*/
|
|
17621
|
-
/*}*/
|
|
17622
|
-
.context-menuLi[data-v-4fd4369c]:hover {
|
|
17623
|
-
background: #5893ef;
|
|
17624
|
-
color: #fff;
|
|
17625
|
-
}
|
|
17626
|
-
.context-menu[data-v-4fd4369c] {
|
|
17627
|
-
border: 1px solid #eee;
|
|
17628
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
17629
|
-
border-radius: 5px;
|
|
17630
|
-
}
|
|
17631
|
-
li[data-v-4fd4369c] {
|
|
17632
|
-
list-style-type: none;
|
|
17635
|
+
[data-v-8e6fbc57] .centered-input .el-input__inner {
|
|
17636
|
+
text-align: center;
|
|
17633
17637
|
}
|
|
17634
17638
|
|
|
17635
17639
|
.seleteSort[data-v-a62867e0] {
|
|
@@ -17637,10 +17641,6 @@ li[data-v-4fd4369c] {
|
|
|
17637
17641
|
border: 1px solid rgba(88, 147, 239);
|
|
17638
17642
|
}
|
|
17639
17643
|
|
|
17640
|
-
[data-v-8e6fbc57] .centered-input .el-input__inner {
|
|
17641
|
-
text-align: center;
|
|
17642
|
-
}
|
|
17643
|
-
|
|
17644
17644
|
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
17645
17645
|
display: flex;
|
|
17646
17646
|
justify-content: space-between;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-designer",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.73",
|
|
4
4
|
"description": "AgileBuilder super page designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
30
30
|
"@vueuse/core": "^10.9.0",
|
|
31
31
|
"agilebuilder-private-libs": "1.0.26",
|
|
32
|
-
"agilebuilder-ui": "1.0.
|
|
32
|
+
"agilebuilder-ui": "1.0.93",
|
|
33
33
|
"echarts": "^5.5.0",
|
|
34
34
|
"element-plus": "^2.6.1",
|
|
35
35
|
"font-awesome": "^4.7.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"qrcode": "^1.5.3",
|
|
42
42
|
"quill": "^2.0.1",
|
|
43
43
|
"service-flow-designer": "2.1.59",
|
|
44
|
-
"super-page-runtime": "2.1.
|
|
44
|
+
"super-page-runtime": "2.1.72",
|
|
45
45
|
"uuid": "^9.0.1",
|
|
46
46
|
"vite": "^5.1.6",
|
|
47
47
|
"vite-plugin-node-stdlib-browser": "^0.2.1",
|