service-flow-designer 2.1.51 → 2.1.53
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/designer/common/components/value-set-input/value-set-input.vue.d.ts +9 -0
- package/dist/es/designer/common/components/value-set-input/value-set-input.vue.js +1 -1
- package/dist/es/designer/common/components/value-set-input/value-set-input.vue2.js +9 -5
- package/dist/es/designer/service-components/database/regular-query/config.vue.js +1 -1
- package/dist/es/designer/service-components/database/regular-query/config.vue2.js +61 -14
- package/dist/es/style.css +296 -296
- package/package.json +2 -2
|
@@ -66,6 +66,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
66
66
|
type: StringConstructor;
|
|
67
67
|
required: false;
|
|
68
68
|
};
|
|
69
|
+
placeholder: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
69
73
|
}, {
|
|
70
74
|
setSelectOptions: typeof setSelectOptions;
|
|
71
75
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -137,11 +141,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
137
141
|
type: StringConstructor;
|
|
138
142
|
required: false;
|
|
139
143
|
};
|
|
144
|
+
placeholder: {
|
|
145
|
+
type: StringConstructor;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
140
148
|
}>> & {
|
|
141
149
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
142
150
|
}, {
|
|
143
151
|
size: string;
|
|
144
152
|
modelValue: string;
|
|
153
|
+
placeholder: string;
|
|
145
154
|
width: string;
|
|
146
155
|
paramTypes: string[];
|
|
147
156
|
inputSize: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./value-set-input.vue2.js";
|
|
2
2
|
import "./value-set-input.vue3.js";
|
|
3
3
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const ValueSetInput = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const ValueSetInput = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-21f429a9"]]);
|
|
5
5
|
export {
|
|
6
6
|
ValueSetInput as default
|
|
7
7
|
};
|
|
@@ -18,7 +18,7 @@ import { useServiceFlowStore } from "../../../../stores/page-store.js";
|
|
|
18
18
|
import fileUpload from "../file-upload.vue.js";
|
|
19
19
|
import http from "agilebuilder-ui/src/utils/request";
|
|
20
20
|
import { ElMessage } from "element-plus";
|
|
21
|
-
const _withScopeId = (n) => (pushScopeId("data-v-
|
|
21
|
+
const _withScopeId = (n) => (pushScopeId("data-v-21f429a9"), n = n(), popScopeId(), n);
|
|
22
22
|
const _hoisted_1 = { key: 0 };
|
|
23
23
|
const _hoisted_2 = { style: { "margin-top": "10px", "font-size": "10px", "display": "flex", "align-items": "center", "justify-self": "center" } };
|
|
24
24
|
const _hoisted_3 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { style: { "margin-left": "5px" } }, "输入变量名后点击加号按钮添加", -1));
|
|
@@ -74,6 +74,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
74
74
|
autoCreateFieldType: {
|
|
75
75
|
type: String,
|
|
76
76
|
required: false
|
|
77
|
+
},
|
|
78
|
+
placeholder: {
|
|
79
|
+
type: String,
|
|
80
|
+
default: "请选择"
|
|
77
81
|
}
|
|
78
82
|
},
|
|
79
83
|
emits: ["update:modelValue"],
|
|
@@ -345,8 +349,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
345
349
|
const tempOptions = [];
|
|
346
350
|
for (let result of results) {
|
|
347
351
|
tempOptions.push({
|
|
348
|
-
value: result.
|
|
349
|
-
label: result.
|
|
352
|
+
value: result.propKey,
|
|
353
|
+
label: result.propKey + " (" + result.propValue + ")"
|
|
350
354
|
});
|
|
351
355
|
}
|
|
352
356
|
selectOptions.value.systemVarOptions = tempOptions;
|
|
@@ -387,7 +391,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
387
391
|
"prefix-icon": unref(Search),
|
|
388
392
|
modelValue: defalutValue.value,
|
|
389
393
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => defalutValue.value = $event),
|
|
390
|
-
placeholder:
|
|
394
|
+
placeholder: __props.placeholder
|
|
391
395
|
}, {
|
|
392
396
|
append: withCtx(() => [
|
|
393
397
|
createVNode(_component_el_button, {
|
|
@@ -397,7 +401,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
397
401
|
}, null, 8, ["size", "icon"])
|
|
398
402
|
]),
|
|
399
403
|
_: 1
|
|
400
|
-
}, 8, ["style", "size", "prefix-icon", "modelValue"])
|
|
404
|
+
}, 8, ["style", "size", "prefix-icon", "modelValue", "placeholder"])
|
|
401
405
|
]),
|
|
402
406
|
default: withCtx(() => [
|
|
403
407
|
createVNode(_component_el_row, null, {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./config.vue2.js";
|
|
2
2
|
import "./config.vue3.js";
|
|
3
3
|
import _export_sfc from "../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f9e164ec"]]);
|
|
5
5
|
export {
|
|
6
6
|
config as default
|
|
7
7
|
};
|
|
@@ -14,7 +14,7 @@ import "element-plus/es/components/form-item/style/css";
|
|
|
14
14
|
import "element-plus/es/components/input/style/css";
|
|
15
15
|
import "element-plus/es/components/button/style/css";
|
|
16
16
|
import "element-plus/es/components/checkbox/style/css";
|
|
17
|
-
import { defineComponent, ref, onMounted, openBlock, createElementBlock, createVNode, withCtx, unref, createElementVNode, createTextVNode, toDisplayString, createBlock, Fragment, renderList } from "vue";
|
|
17
|
+
import { defineComponent, ref, onMounted, openBlock, createElementBlock, createVNode, withCtx, unref, createElementVNode, createTextVNode, toDisplayString, createBlock, Fragment, renderList, createCommentVNode } from "vue";
|
|
18
18
|
import { Search, View, Plus, Minus } from "@element-plus/icons-vue";
|
|
19
19
|
import { getLabel, sqlOperators, logicOperators } from "../../util/common-options.js";
|
|
20
20
|
import ValueSetInput from "../../../common/components/value-set-input/value-set-input.vue.js";
|
|
@@ -467,6 +467,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
467
467
|
]),
|
|
468
468
|
_: 1
|
|
469
469
|
}, 8, ["data"]),
|
|
470
|
+
createVNode(_component_el_form_item, {
|
|
471
|
+
label: "",
|
|
472
|
+
style: { "width": "100%" }
|
|
473
|
+
}, {
|
|
474
|
+
label: withCtx((scope) => [
|
|
475
|
+
createVNode(_component_el_checkbox, {
|
|
476
|
+
modelValue: __props.properties.search.pageEnable,
|
|
477
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.properties.search.pageEnable = $event),
|
|
478
|
+
label: "分页(offset)"
|
|
479
|
+
}, null, 8, ["modelValue"])
|
|
480
|
+
]),
|
|
481
|
+
default: withCtx(() => [
|
|
482
|
+
__props.properties.search.pageEnable ? (openBlock(), createBlock(unref(ValueSetInput), {
|
|
483
|
+
key: 0,
|
|
484
|
+
modelValue: __props.properties.search.page,
|
|
485
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.properties.search.page = $event),
|
|
486
|
+
customInputTypes: ["data"],
|
|
487
|
+
size: "small",
|
|
488
|
+
placeholder: "从变量中获取分页信息"
|
|
489
|
+
}, null, 8, ["modelValue"])) : createCommentVNode("", true)
|
|
490
|
+
]),
|
|
491
|
+
_: 1
|
|
492
|
+
}),
|
|
470
493
|
createVNode(_component_el_form_item, {
|
|
471
494
|
label: "",
|
|
472
495
|
style: { "width": "100%" }
|
|
@@ -474,18 +497,42 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
474
497
|
label: withCtx((scope) => [
|
|
475
498
|
createVNode(_component_el_checkbox, {
|
|
476
499
|
modelValue: __props.properties.search.limitEnable,
|
|
477
|
-
"onUpdate:modelValue": _cache[
|
|
478
|
-
label: "限制数量"
|
|
500
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => __props.properties.search.limitEnable = $event),
|
|
501
|
+
label: "限制数量(limit)"
|
|
479
502
|
}, null, 8, ["modelValue"])
|
|
480
503
|
]),
|
|
481
504
|
default: withCtx(() => [
|
|
482
|
-
|
|
483
|
-
|
|
505
|
+
__props.properties.search.limitEnable ? (openBlock(), createBlock(unref(ValueSetInput), {
|
|
506
|
+
key: 0,
|
|
484
507
|
modelValue: __props.properties.search.limit,
|
|
485
|
-
"onUpdate:modelValue": _cache[
|
|
486
|
-
|
|
508
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.properties.search.limit = $event),
|
|
509
|
+
customInputTypes: ["data"],
|
|
510
|
+
size: "small",
|
|
511
|
+
placeholder: "从变量中获取分页大小"
|
|
512
|
+
}, null, 8, ["modelValue"])) : createCommentVNode("", true)
|
|
513
|
+
]),
|
|
514
|
+
_: 1
|
|
515
|
+
}),
|
|
516
|
+
createVNode(_component_el_form_item, {
|
|
517
|
+
label: "",
|
|
518
|
+
style: { "width": "100%" }
|
|
519
|
+
}, {
|
|
520
|
+
label: withCtx((scope) => [
|
|
521
|
+
createVNode(_component_el_checkbox, {
|
|
522
|
+
modelValue: __props.properties.search.totalEnable,
|
|
523
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => __props.properties.search.totalEnable = $event),
|
|
524
|
+
label: "设置总条数到变量"
|
|
487
525
|
}, null, 8, ["modelValue"])
|
|
488
526
|
]),
|
|
527
|
+
default: withCtx(() => [
|
|
528
|
+
__props.properties.search.totalEnable ? (openBlock(), createBlock(unref(ValueSetInput), {
|
|
529
|
+
key: 0,
|
|
530
|
+
customInputTypes: ["data"],
|
|
531
|
+
size: "small",
|
|
532
|
+
modelValue: __props.properties.search.total,
|
|
533
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.properties.search.total = $event)
|
|
534
|
+
}, null, 8, ["modelValue"])) : createCommentVNode("", true)
|
|
535
|
+
]),
|
|
489
536
|
_: 1
|
|
490
537
|
}),
|
|
491
538
|
createVNode(_component_el_alert, {
|
|
@@ -577,7 +624,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
577
624
|
size: "small",
|
|
578
625
|
icon: unref(Plus),
|
|
579
626
|
circle: "",
|
|
580
|
-
onClick: _cache[
|
|
627
|
+
onClick: _cache[12] || (_cache[12] = ($event) => addSortColumn())
|
|
581
628
|
}, null, 8, ["icon"])
|
|
582
629
|
]),
|
|
583
630
|
_: 1
|
|
@@ -622,7 +669,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
622
669
|
default: withCtx(() => [
|
|
623
670
|
createVNode(_component_el_radio_group, {
|
|
624
671
|
modelValue: __props.properties.result.valueSetScope,
|
|
625
|
-
"onUpdate:modelValue": _cache[
|
|
672
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => __props.properties.result.valueSetScope = $event),
|
|
626
673
|
class: "ml-4"
|
|
627
674
|
}, {
|
|
628
675
|
default: withCtx(() => [
|
|
@@ -654,7 +701,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
654
701
|
size: "small",
|
|
655
702
|
inputSize: "default",
|
|
656
703
|
modelValue: __props.properties.result.setTo,
|
|
657
|
-
"onUpdate:modelValue": _cache[
|
|
704
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = ($event) => __props.properties.result.setTo = $event)
|
|
658
705
|
}, null, 8, ["modelValue"])
|
|
659
706
|
]),
|
|
660
707
|
_: 1
|
|
@@ -673,7 +720,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
673
720
|
default: withCtx(() => [
|
|
674
721
|
createVNode(_component_el_radio, {
|
|
675
722
|
modelValue: __props.properties.noData.action,
|
|
676
|
-
"onUpdate:modelValue": _cache[
|
|
723
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.properties.noData.action = $event),
|
|
677
724
|
value: " ",
|
|
678
725
|
style: { "width": "150px" }
|
|
679
726
|
}, {
|
|
@@ -692,7 +739,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
692
739
|
label: withCtx((scope) => [
|
|
693
740
|
createVNode(_component_el_radio, {
|
|
694
741
|
modelValue: __props.properties.noData.action,
|
|
695
|
-
"onUpdate:modelValue": _cache[
|
|
742
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.properties.noData.action = $event),
|
|
696
743
|
value: "throwException",
|
|
697
744
|
label: "无数据时抛异常"
|
|
698
745
|
}, null, 8, ["modelValue"])
|
|
@@ -701,7 +748,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
701
748
|
createVNode(_component_el_input, {
|
|
702
749
|
disabled: __props.properties.noData.action !== "throwException",
|
|
703
750
|
modelValue: __props.properties.noData.exceptionMessage,
|
|
704
|
-
"onUpdate:modelValue": _cache[
|
|
751
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => __props.properties.noData.exceptionMessage = $event),
|
|
705
752
|
placeholder: "自定义异常消息"
|
|
706
753
|
}, null, 8, ["disabled", "modelValue"])
|
|
707
754
|
]),
|
|
@@ -714,7 +761,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
714
761
|
createVNode(unref(_sfc_main$2), {
|
|
715
762
|
sql: sql.value,
|
|
716
763
|
"model-value": showSqlViewDialog.value,
|
|
717
|
-
"onUpdate:modelValue": _cache[
|
|
764
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => showSqlViewDialog.value = $event)
|
|
718
765
|
}, null, 8, ["sql", "model-value"])
|
|
719
766
|
]);
|
|
720
767
|
};
|
package/dist/es/style.css
CHANGED
|
@@ -22,47 +22,6 @@
|
|
|
22
22
|
[data-v-7117ba9e] .el-overlay {
|
|
23
23
|
position: static;
|
|
24
24
|
}
|
|
25
|
-
|
|
26
|
-
.amb-design-assembly-content[data-v-59e0837d] {
|
|
27
|
-
background: #ffffff;
|
|
28
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
29
|
-
height: 100%;
|
|
30
|
-
padding-left: 10px;
|
|
31
|
-
padding-right: 10px;
|
|
32
|
-
overflow: auto;
|
|
33
|
-
}
|
|
34
|
-
/*控制滚动条宽度*/
|
|
35
|
-
.amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
|
|
36
|
-
width: 1px;
|
|
37
|
-
}
|
|
38
|
-
.amb-assembly-header[data-v-59e0837d] {
|
|
39
|
-
position: absolute;
|
|
40
|
-
width: 220px;
|
|
41
|
-
text-align: center;
|
|
42
|
-
padding: 18px 0px 10px 0px;
|
|
43
|
-
padding-bottom: 14px;
|
|
44
|
-
background-color: #ffffff;
|
|
45
|
-
}
|
|
46
|
-
.amb-assembly-header-type[data-v-59e0837d] {
|
|
47
|
-
border-radius: 100px 100px 100px 100px;
|
|
48
|
-
background: #ffffff;
|
|
49
|
-
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
50
|
-
padding: 10px;
|
|
51
|
-
padding-bottom: 12px;
|
|
52
|
-
}
|
|
53
|
-
.amb-assembly-header-type > label[data-v-59e0837d] {
|
|
54
|
-
padding: 4px 14px;
|
|
55
|
-
cursor: pointer;
|
|
56
|
-
font-size: 14px;
|
|
57
|
-
}
|
|
58
|
-
.amb-assembly-header-type > label.selected[data-v-59e0837d] {
|
|
59
|
-
border-radius: 100px 100px 100px 100px;
|
|
60
|
-
background: #5893ef;
|
|
61
|
-
color: #ffffff;
|
|
62
|
-
}
|
|
63
|
-
.amb-design-assembly-list[data-v-59e0837d] {
|
|
64
|
-
padding-top: 80px;
|
|
65
|
-
}
|
|
66
25
|
.serviceflow-design-content[data-v-04746c34] {
|
|
67
26
|
overflow: auto;
|
|
68
27
|
display: block;
|
|
@@ -167,8 +126,45 @@
|
|
|
167
126
|
border-color: transparent transparent var(--el-skeleton-color) transparent;
|
|
168
127
|
}
|
|
169
128
|
|
|
170
|
-
.
|
|
171
|
-
|
|
129
|
+
.amb-design-assembly-content[data-v-59e0837d] {
|
|
130
|
+
background: #ffffff;
|
|
131
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
132
|
+
height: 100%;
|
|
133
|
+
padding-left: 10px;
|
|
134
|
+
padding-right: 10px;
|
|
135
|
+
overflow: auto;
|
|
136
|
+
}
|
|
137
|
+
/*控制滚动条宽度*/
|
|
138
|
+
.amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
|
|
139
|
+
width: 1px;
|
|
140
|
+
}
|
|
141
|
+
.amb-assembly-header[data-v-59e0837d] {
|
|
142
|
+
position: absolute;
|
|
143
|
+
width: 220px;
|
|
144
|
+
text-align: center;
|
|
145
|
+
padding: 18px 0px 10px 0px;
|
|
146
|
+
padding-bottom: 14px;
|
|
147
|
+
background-color: #ffffff;
|
|
148
|
+
}
|
|
149
|
+
.amb-assembly-header-type[data-v-59e0837d] {
|
|
150
|
+
border-radius: 100px 100px 100px 100px;
|
|
151
|
+
background: #ffffff;
|
|
152
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
153
|
+
padding: 10px;
|
|
154
|
+
padding-bottom: 12px;
|
|
155
|
+
}
|
|
156
|
+
.amb-assembly-header-type > label[data-v-59e0837d] {
|
|
157
|
+
padding: 4px 14px;
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
font-size: 14px;
|
|
160
|
+
}
|
|
161
|
+
.amb-assembly-header-type > label.selected[data-v-59e0837d] {
|
|
162
|
+
border-radius: 100px 100px 100px 100px;
|
|
163
|
+
background: #5893ef;
|
|
164
|
+
color: #ffffff;
|
|
165
|
+
}
|
|
166
|
+
.amb-design-assembly-list[data-v-59e0837d] {
|
|
167
|
+
padding-top: 80px;
|
|
172
168
|
}
|
|
173
169
|
|
|
174
170
|
.editorTool[data-v-d55ab098] {
|
|
@@ -184,21 +180,35 @@
|
|
|
184
180
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
185
181
|
}
|
|
186
182
|
|
|
187
|
-
.el-alert + .el-
|
|
183
|
+
.el-alert + .el-form-item[data-v-a158f309] {
|
|
188
184
|
margin-top: 10px;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
[data-v-f9e164ec] .el-radio {
|
|
188
|
+
margin: 0;
|
|
189
189
|
}
|
|
190
|
-
.el-
|
|
191
|
-
margin: 10px
|
|
190
|
+
.el-radio + .el-radio[data-v-f9e164ec] {
|
|
191
|
+
margin-left: 10px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.editorTool[data-v-684c1f08] {
|
|
195
|
+
margin-left: auto;
|
|
192
196
|
}
|
|
193
|
-
.
|
|
194
|
-
margin-
|
|
197
|
+
.editorOption[data-v-684c1f08] {
|
|
198
|
+
margin-right: 10px;
|
|
199
|
+
cursor: pointer;
|
|
200
|
+
}
|
|
201
|
+
.pppp[data-v-684c1f08] {
|
|
202
|
+
display: flex; /* 使用Flex布局 */
|
|
203
|
+
justify-content: flex-start;
|
|
204
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
195
205
|
}
|
|
196
206
|
|
|
197
|
-
|
|
198
|
-
margin
|
|
207
|
+
[data-v-dac15197] .el-radio {
|
|
208
|
+
margin: 0;
|
|
199
209
|
}
|
|
200
|
-
.el-
|
|
201
|
-
margin-
|
|
210
|
+
.el-radio + .el-radio[data-v-dac15197] {
|
|
211
|
+
margin-left: 10px;
|
|
202
212
|
}
|
|
203
213
|
.serviceflow-control-item[data-v-a2bd7452] {
|
|
204
214
|
top: -5px;
|
|
@@ -332,17 +342,11 @@
|
|
|
332
342
|
margin-left: 50px;
|
|
333
343
|
}
|
|
334
344
|
|
|
335
|
-
.
|
|
336
|
-
margin-
|
|
337
|
-
}
|
|
338
|
-
.editorOption[data-v-684c1f08] {
|
|
339
|
-
margin-right: 10px;
|
|
340
|
-
cursor: pointer;
|
|
345
|
+
.el-tabs + .el-alert[data-v-08737620] {
|
|
346
|
+
margin-top: 10px;
|
|
341
347
|
}
|
|
342
|
-
.
|
|
343
|
-
|
|
344
|
-
justify-content: flex-start;
|
|
345
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
348
|
+
.el-alert + .el-form-item[data-v-08737620] {
|
|
349
|
+
margin-top: 10px;
|
|
346
350
|
}
|
|
347
351
|
|
|
348
352
|
.el-dialog__wrapper[data-v-7a4cbbaf] {
|
|
@@ -350,11 +354,91 @@
|
|
|
350
354
|
padding-right: 0 !important;
|
|
351
355
|
}
|
|
352
356
|
|
|
353
|
-
[data-v-
|
|
354
|
-
margin:
|
|
357
|
+
.el-alert + .el-form-item[data-v-32875028] {
|
|
358
|
+
margin-top: 10px;
|
|
355
359
|
}
|
|
356
|
-
.el-
|
|
357
|
-
margin
|
|
360
|
+
.el-alert + .el-table[data-v-32875028] {
|
|
361
|
+
margin: 10px 0;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.el-drawer__header {
|
|
365
|
+
margin-bottom: 0 !important;
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
369
|
+
*/
|
|
370
|
+
[data-v-d5185214] .el-overlay {
|
|
371
|
+
position: static;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.el-alert + .el-table[data-v-d978e7dc] {
|
|
375
|
+
margin-top: 10px;
|
|
376
|
+
}
|
|
377
|
+
.el-table + .el-alert[data-v-d978e7dc] {
|
|
378
|
+
margin: 10px 0;
|
|
379
|
+
}
|
|
380
|
+
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
381
|
+
margin-top: 10px;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
385
|
+
margin-top: 10px;
|
|
386
|
+
}
|
|
387
|
+
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
388
|
+
margin: 10px 0;
|
|
389
|
+
}
|
|
390
|
+
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
391
|
+
margin-top: 10px;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.el-alert + .el-table[data-v-82e0dfef] {
|
|
395
|
+
margin-top: 10px;
|
|
396
|
+
}
|
|
397
|
+
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
398
|
+
margin-top: 10px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
[data-v-da8fc67a] .el-table__row {
|
|
402
|
+
cursor: pointer;
|
|
403
|
+
}
|
|
404
|
+
/** 右键菜单样式 */
|
|
405
|
+
.context-menu[data-v-da8fc67a] {
|
|
406
|
+
position: absolute;
|
|
407
|
+
background: #fff;
|
|
408
|
+
z-index: 999;
|
|
409
|
+
margin: 5;
|
|
410
|
+
padding: 8px 8px;
|
|
411
|
+
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
412
|
+
border: 1px solid #bbbbbb;
|
|
413
|
+
border-radius: 10px;
|
|
414
|
+
font-size: 14px;
|
|
415
|
+
}
|
|
416
|
+
.context-menu li[data-v-da8fc67a] {
|
|
417
|
+
list-style-type: none;
|
|
418
|
+
min-width: 75px;
|
|
419
|
+
line-height: 28px;
|
|
420
|
+
text-align: left;
|
|
421
|
+
border-radius: 5px;
|
|
422
|
+
padding-left: 5px;
|
|
423
|
+
cursor: pointer;
|
|
424
|
+
}
|
|
425
|
+
.context-menu li[data-v-da8fc67a]:hover {
|
|
426
|
+
background: #0165e1;
|
|
427
|
+
color: #fff;
|
|
428
|
+
}
|
|
429
|
+
/** 右键菜单样式 */
|
|
430
|
+
.custom-tree-node[data-v-da8fc67a] {
|
|
431
|
+
font-size: 14px;
|
|
432
|
+
padding-right: 8px;
|
|
433
|
+
display: flex; /* 使用Flex布局 */
|
|
434
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.el-alert + .el-table[data-v-028fb838] {
|
|
438
|
+
margin-top: 10px;
|
|
439
|
+
}
|
|
440
|
+
.el-table + .el-alert[data-v-028fb838] {
|
|
441
|
+
margin: 10px 0;
|
|
358
442
|
}
|
|
359
443
|
.serviceflow-attr-base-content[data-v-8bad091d] {
|
|
360
444
|
background: #ffffff;
|
|
@@ -423,98 +507,14 @@
|
|
|
423
507
|
opacity: 1 !important;
|
|
424
508
|
}
|
|
425
509
|
|
|
426
|
-
.
|
|
427
|
-
margin-bottom: 0 !important;
|
|
428
|
-
}
|
|
429
|
-
/**
|
|
430
|
-
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
431
|
-
*/
|
|
432
|
-
[data-v-d5185214] .el-overlay {
|
|
433
|
-
position: static;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.el-alert + .el-form-item[data-v-32875028] {
|
|
437
|
-
margin-top: 10px;
|
|
438
|
-
}
|
|
439
|
-
.el-alert + .el-table[data-v-32875028] {
|
|
440
|
-
margin: 10px 0;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
[data-v-da8fc67a] .el-table__row {
|
|
444
|
-
cursor: pointer;
|
|
445
|
-
}
|
|
446
|
-
/** 右键菜单样式 */
|
|
447
|
-
.context-menu[data-v-da8fc67a] {
|
|
448
|
-
position: absolute;
|
|
449
|
-
background: #fff;
|
|
450
|
-
z-index: 999;
|
|
451
|
-
margin: 5;
|
|
452
|
-
padding: 8px 8px;
|
|
453
|
-
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
454
|
-
border: 1px solid #bbbbbb;
|
|
455
|
-
border-radius: 10px;
|
|
456
|
-
font-size: 14px;
|
|
457
|
-
}
|
|
458
|
-
.context-menu li[data-v-da8fc67a] {
|
|
459
|
-
list-style-type: none;
|
|
460
|
-
min-width: 75px;
|
|
461
|
-
line-height: 28px;
|
|
462
|
-
text-align: left;
|
|
463
|
-
border-radius: 5px;
|
|
464
|
-
padding-left: 5px;
|
|
465
|
-
cursor: pointer;
|
|
466
|
-
}
|
|
467
|
-
.context-menu li[data-v-da8fc67a]:hover {
|
|
468
|
-
background: #0165e1;
|
|
469
|
-
color: #fff;
|
|
470
|
-
}
|
|
471
|
-
/** 右键菜单样式 */
|
|
472
|
-
.custom-tree-node[data-v-da8fc67a] {
|
|
473
|
-
font-size: 14px;
|
|
474
|
-
padding-right: 8px;
|
|
475
|
-
display: flex; /* 使用Flex布局 */
|
|
476
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
.el-tabs + .el-alert[data-v-08737620] {
|
|
480
|
-
margin-top: 10px;
|
|
481
|
-
}
|
|
482
|
-
.el-alert + .el-form-item[data-v-08737620] {
|
|
483
|
-
margin-top: 10px;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.el-alert + .el-table[data-v-028fb838] {
|
|
487
|
-
margin-top: 10px;
|
|
488
|
-
}
|
|
489
|
-
.el-table + .el-alert[data-v-028fb838] {
|
|
490
|
-
margin: 10px 0;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
[data-v-dac15197] .el-radio {
|
|
494
|
-
margin: 0;
|
|
495
|
-
}
|
|
496
|
-
.el-radio + .el-radio[data-v-dac15197] {
|
|
497
|
-
margin-left: 10px;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
501
|
-
margin-top: 10px;
|
|
502
|
-
}
|
|
503
|
-
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
504
|
-
margin: 10px 0;
|
|
505
|
-
}
|
|
506
|
-
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
507
|
-
margin-top: 10px;
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
.node-content[data-v-669b618f] {
|
|
510
|
+
.node-content[data-v-117d4091] {
|
|
511
511
|
width: 120px;
|
|
512
512
|
height: 44px;
|
|
513
513
|
background: #ffffff;
|
|
514
514
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
515
515
|
border-radius: 2px 2px 2px 2px;
|
|
516
516
|
}
|
|
517
|
-
.content[data-v-
|
|
517
|
+
.content[data-v-117d4091] {
|
|
518
518
|
width: 28px;
|
|
519
519
|
height: 15px;
|
|
520
520
|
font-weight: 400;
|
|
@@ -525,9 +525,9 @@
|
|
|
525
525
|
font-style: normal;
|
|
526
526
|
text-transform: none;
|
|
527
527
|
padding: 5px 0px 4px 10px;
|
|
528
|
-
|
|
528
|
+
box-sizing: content-box;
|
|
529
529
|
}
|
|
530
|
-
.serviceflow-nodeView[data-v-
|
|
530
|
+
.serviceflow-nodeView[data-v-418f1558] {
|
|
531
531
|
box-sizing: border-box;
|
|
532
532
|
margin: 10px 10px;
|
|
533
533
|
width: 180px;
|
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
border-radius: 2px 2px 2px 2px;
|
|
537
537
|
padding: 20px 10px;
|
|
538
538
|
}
|
|
539
|
-
.serviceflow-nodeTitle[data-v-
|
|
539
|
+
.serviceflow-nodeTitle[data-v-418f1558] {
|
|
540
540
|
width: 90px;
|
|
541
541
|
height: 15px;
|
|
542
542
|
font-weight: 400;
|
|
@@ -552,7 +552,7 @@
|
|
|
552
552
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
553
553
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
554
554
|
}
|
|
555
|
-
.serviceflow-nodeContent[data-v-
|
|
555
|
+
.serviceflow-nodeContent[data-v-418f1558] {
|
|
556
556
|
/* width: 100%; */
|
|
557
557
|
height: 15px;
|
|
558
558
|
font-weight: 400;
|
|
@@ -568,17 +568,18 @@
|
|
|
568
568
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
569
569
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
570
570
|
}
|
|
571
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
571
|
+
.serviceflow-nodeContent-desc[data-v-418f1558] {
|
|
572
572
|
}
|
|
573
|
-
.el-divider--horizontal[data-v-
|
|
573
|
+
.el-divider--horizontal[data-v-418f1558] {
|
|
574
574
|
margin: 12px 0;
|
|
575
575
|
}
|
|
576
|
-
.serviceflow-nodeView[data-v-
|
|
576
|
+
.serviceflow-nodeView[data-v-418f1558] {
|
|
577
577
|
border: 1px solid #5a90f9;
|
|
578
|
-
background: #eef3fe;
|
|
578
|
+
background: #eef3fe;
|
|
579
|
+
width: 180px;
|
|
580
|
+
min-height: 95px;
|
|
579
581
|
}
|
|
580
|
-
.serviceflow-
|
|
581
|
-
width: 80px;
|
|
582
|
+
.serviceflow-nodeContent[data-v-418f1558] {
|
|
582
583
|
}
|
|
583
584
|
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
584
585
|
box-sizing: border-box;
|
|
@@ -632,9 +633,30 @@
|
|
|
632
633
|
width: 180px;
|
|
633
634
|
min-height: 95px;
|
|
634
635
|
}
|
|
635
|
-
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
636
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.node-content[data-v-669b618f] {
|
|
640
|
+
width: 120px;
|
|
641
|
+
height: 44px;
|
|
642
|
+
background: #ffffff;
|
|
643
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
644
|
+
border-radius: 2px 2px 2px 2px;
|
|
645
|
+
}
|
|
646
|
+
.content[data-v-669b618f] {
|
|
647
|
+
width: 28px;
|
|
648
|
+
height: 15px;
|
|
649
|
+
font-weight: 400;
|
|
650
|
+
font-size: 14px;
|
|
651
|
+
color: #333333;
|
|
652
|
+
line-height: 14px;
|
|
653
|
+
text-align: left;
|
|
654
|
+
font-style: normal;
|
|
655
|
+
text-transform: none;
|
|
656
|
+
padding: 5px 0px 4px 10px;
|
|
657
|
+
box-sizing: content-box;
|
|
636
658
|
}
|
|
637
|
-
.serviceflow-nodeView[data-v-
|
|
659
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
638
660
|
box-sizing: border-box;
|
|
639
661
|
margin: 10px 10px;
|
|
640
662
|
width: 180px;
|
|
@@ -643,7 +665,7 @@
|
|
|
643
665
|
border-radius: 2px 2px 2px 2px;
|
|
644
666
|
padding: 20px 10px;
|
|
645
667
|
}
|
|
646
|
-
.serviceflow-nodeTitle[data-v-
|
|
668
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
647
669
|
width: 90px;
|
|
648
670
|
height: 15px;
|
|
649
671
|
font-weight: 400;
|
|
@@ -659,7 +681,7 @@
|
|
|
659
681
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
660
682
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
661
683
|
}
|
|
662
|
-
.serviceflow-nodeContent[data-v-
|
|
684
|
+
.serviceflow-nodeContent[data-v-42ce3f17] {
|
|
663
685
|
/* width: 100%; */
|
|
664
686
|
height: 15px;
|
|
665
687
|
font-weight: 400;
|
|
@@ -675,19 +697,19 @@
|
|
|
675
697
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
676
698
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
677
699
|
}
|
|
678
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
700
|
+
.serviceflow-nodeContent-desc[data-v-42ce3f17] {
|
|
679
701
|
}
|
|
680
|
-
.el-divider--horizontal[data-v-
|
|
702
|
+
.el-divider--horizontal[data-v-42ce3f17] {
|
|
681
703
|
margin: 12px 0;
|
|
682
704
|
}
|
|
683
|
-
.serviceflow-nodeView[data-v-
|
|
705
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
684
706
|
border: 1px solid #5a90f9;
|
|
685
707
|
background: #eef3fe;
|
|
686
708
|
}
|
|
687
|
-
.serviceflow-nodeTitle[data-v-
|
|
709
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
688
710
|
width: 80px;
|
|
689
711
|
}
|
|
690
|
-
.serviceflow-nodeView[data-v-
|
|
712
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
691
713
|
box-sizing: border-box;
|
|
692
714
|
margin: 10px 10px;
|
|
693
715
|
width: 180px;
|
|
@@ -696,7 +718,7 @@
|
|
|
696
718
|
border-radius: 2px 2px 2px 2px;
|
|
697
719
|
padding: 20px 10px;
|
|
698
720
|
}
|
|
699
|
-
.serviceflow-nodeTitle[data-v-
|
|
721
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
700
722
|
width: 90px;
|
|
701
723
|
height: 15px;
|
|
702
724
|
font-weight: 400;
|
|
@@ -712,7 +734,7 @@
|
|
|
712
734
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
713
735
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
714
736
|
}
|
|
715
|
-
.serviceflow-nodeContent[data-v-
|
|
737
|
+
.serviceflow-nodeContent[data-v-1519c141] {
|
|
716
738
|
/* width: 100%; */
|
|
717
739
|
height: 15px;
|
|
718
740
|
font-weight: 400;
|
|
@@ -728,39 +750,18 @@
|
|
|
728
750
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
729
751
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
730
752
|
}
|
|
731
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
753
|
+
.serviceflow-nodeContent-desc[data-v-1519c141] {
|
|
732
754
|
}
|
|
733
|
-
.el-divider--horizontal[data-v-
|
|
755
|
+
.el-divider--horizontal[data-v-1519c141] {
|
|
734
756
|
margin: 12px 0;
|
|
735
757
|
}
|
|
736
|
-
.serviceflow-nodeView[data-v-
|
|
758
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
737
759
|
border: 1px solid #5a90f9;
|
|
738
760
|
background: #eef3fe;
|
|
739
761
|
}
|
|
740
|
-
.serviceflow-nodeTitle[data-v-
|
|
762
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
741
763
|
width: 80px;
|
|
742
764
|
}
|
|
743
|
-
|
|
744
|
-
.node-content[data-v-117d4091] {
|
|
745
|
-
width: 120px;
|
|
746
|
-
height: 44px;
|
|
747
|
-
background: #ffffff;
|
|
748
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
749
|
-
border-radius: 2px 2px 2px 2px;
|
|
750
|
-
}
|
|
751
|
-
.content[data-v-117d4091] {
|
|
752
|
-
width: 28px;
|
|
753
|
-
height: 15px;
|
|
754
|
-
font-weight: 400;
|
|
755
|
-
font-size: 14px;
|
|
756
|
-
color: #333333;
|
|
757
|
-
line-height: 14px;
|
|
758
|
-
text-align: left;
|
|
759
|
-
font-style: normal;
|
|
760
|
-
text-transform: none;
|
|
761
|
-
padding: 5px 0px 4px 10px;
|
|
762
|
-
box-sizing: content-box;
|
|
763
|
-
}
|
|
764
765
|
.serviceflow-nodeView[data-v-96d149c1] {
|
|
765
766
|
box-sizing: border-box;
|
|
766
767
|
margin: 10px 10px;
|
|
@@ -814,7 +815,7 @@
|
|
|
814
815
|
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
815
816
|
width: 80px;
|
|
816
817
|
}
|
|
817
|
-
.serviceflow-nodeView[data-v-
|
|
818
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
818
819
|
box-sizing: border-box;
|
|
819
820
|
margin: 10px 10px;
|
|
820
821
|
width: 180px;
|
|
@@ -823,7 +824,7 @@
|
|
|
823
824
|
border-radius: 2px 2px 2px 2px;
|
|
824
825
|
padding: 20px 10px;
|
|
825
826
|
}
|
|
826
|
-
.serviceflow-nodeTitle[data-v-
|
|
827
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
827
828
|
width: 90px;
|
|
828
829
|
height: 15px;
|
|
829
830
|
font-weight: 400;
|
|
@@ -839,7 +840,7 @@
|
|
|
839
840
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
840
841
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
841
842
|
}
|
|
842
|
-
.serviceflow-nodeContent[data-v-
|
|
843
|
+
.serviceflow-nodeContent[data-v-08d9d211] {
|
|
843
844
|
/* width: 100%; */
|
|
844
845
|
height: 15px;
|
|
845
846
|
font-weight: 400;
|
|
@@ -855,20 +856,19 @@
|
|
|
855
856
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
856
857
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
857
858
|
}
|
|
858
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
859
|
+
.serviceflow-nodeContent-desc[data-v-08d9d211] {
|
|
859
860
|
}
|
|
860
|
-
.el-divider--horizontal[data-v-
|
|
861
|
+
.el-divider--horizontal[data-v-08d9d211] {
|
|
861
862
|
margin: 12px 0;
|
|
862
863
|
}
|
|
863
|
-
.serviceflow-nodeView[data-v-
|
|
864
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
864
865
|
border: 1px solid #5a90f9;
|
|
865
|
-
background: #eef3fe;
|
|
866
|
-
width: 180px;
|
|
867
|
-
min-height: 95px;
|
|
866
|
+
background: #eef3fe;
|
|
868
867
|
}
|
|
869
|
-
.serviceflow-
|
|
868
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
869
|
+
width: 80px;
|
|
870
870
|
}
|
|
871
|
-
.serviceflow-nodeView[data-v-
|
|
871
|
+
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
872
872
|
box-sizing: border-box;
|
|
873
873
|
margin: 10px 10px;
|
|
874
874
|
width: 180px;
|
|
@@ -877,7 +877,7 @@
|
|
|
877
877
|
border-radius: 2px 2px 2px 2px;
|
|
878
878
|
padding: 20px 10px;
|
|
879
879
|
}
|
|
880
|
-
.serviceflow-nodeTitle[data-v-
|
|
880
|
+
.serviceflow-nodeTitle[data-v-6b34f36c] {
|
|
881
881
|
width: 90px;
|
|
882
882
|
height: 15px;
|
|
883
883
|
font-weight: 400;
|
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
894
894
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
895
895
|
}
|
|
896
|
-
.serviceflow-nodeContent[data-v-
|
|
896
|
+
.serviceflow-nodeContent[data-v-6b34f36c] {
|
|
897
897
|
/* width: 100%; */
|
|
898
898
|
height: 15px;
|
|
899
899
|
font-weight: 400;
|
|
@@ -909,20 +909,19 @@
|
|
|
909
909
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
910
910
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
911
911
|
}
|
|
912
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
912
|
+
.serviceflow-nodeContent-desc[data-v-6b34f36c] {
|
|
913
913
|
}
|
|
914
|
-
.el-divider--horizontal[data-v-
|
|
914
|
+
.el-divider--horizontal[data-v-6b34f36c] {
|
|
915
915
|
margin: 12px 0;
|
|
916
916
|
}
|
|
917
|
-
.serviceflow-nodeView[data-v-
|
|
917
|
+
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
918
918
|
border: 1px solid #5a90f9;
|
|
919
|
-
background: #eef3fe;
|
|
920
|
-
width: 180px;
|
|
921
|
-
min-height: 95px;
|
|
919
|
+
background: #eef3fe;
|
|
922
920
|
}
|
|
923
|
-
.serviceflow-
|
|
921
|
+
.serviceflow-nodeTitle[data-v-6b34f36c] {
|
|
922
|
+
width: 80px;
|
|
924
923
|
}
|
|
925
|
-
.serviceflow-nodeView[data-v-
|
|
924
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
926
925
|
box-sizing: border-box;
|
|
927
926
|
margin: 10px 10px;
|
|
928
927
|
width: 180px;
|
|
@@ -931,7 +930,7 @@
|
|
|
931
930
|
border-radius: 2px 2px 2px 2px;
|
|
932
931
|
padding: 20px 10px;
|
|
933
932
|
}
|
|
934
|
-
.serviceflow-nodeTitle[data-v-
|
|
933
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
935
934
|
width: 90px;
|
|
936
935
|
height: 15px;
|
|
937
936
|
font-weight: 400;
|
|
@@ -947,7 +946,7 @@
|
|
|
947
946
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
948
947
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
949
948
|
}
|
|
950
|
-
.serviceflow-nodeContent[data-v-
|
|
949
|
+
.serviceflow-nodeContent[data-v-4d28d77b] {
|
|
951
950
|
/* width: 100%; */
|
|
952
951
|
height: 15px;
|
|
953
952
|
font-weight: 400;
|
|
@@ -963,39 +962,19 @@
|
|
|
963
962
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
964
963
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
965
964
|
}
|
|
966
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
965
|
+
.serviceflow-nodeContent-desc[data-v-4d28d77b] {
|
|
967
966
|
}
|
|
968
|
-
.el-divider--horizontal[data-v-
|
|
967
|
+
.el-divider--horizontal[data-v-4d28d77b] {
|
|
969
968
|
margin: 12px 0;
|
|
970
969
|
}
|
|
971
|
-
.serviceflow-nodeView[data-v-
|
|
970
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
972
971
|
border: 1px solid #5a90f9;
|
|
973
972
|
background: #eef3fe;
|
|
974
973
|
}
|
|
975
|
-
.serviceflow-nodeTitle[data-v-
|
|
974
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
976
975
|
width: 80px;
|
|
977
976
|
}
|
|
978
|
-
|
|
979
|
-
.aaa[data-v-8bd72b80] {
|
|
980
|
-
width: 300px;
|
|
981
|
-
height: 200px;
|
|
982
|
-
background: #ffffff;
|
|
983
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
984
|
-
border-radius: 2px 2px 2px 2px;
|
|
985
|
-
}
|
|
986
|
-
.content[data-v-8bd72b80] {
|
|
987
|
-
width: 28px;
|
|
988
|
-
height: 15px;
|
|
989
|
-
font-weight: 400;
|
|
990
|
-
font-size: 14px;
|
|
991
|
-
color: #333333;
|
|
992
|
-
line-height: 14px;
|
|
993
|
-
text-align: left;
|
|
994
|
-
font-style: normal;
|
|
995
|
-
text-transform: none;
|
|
996
|
-
padding: 5px 0px 4px 10px;
|
|
997
|
-
}
|
|
998
|
-
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
977
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
999
978
|
box-sizing: border-box;
|
|
1000
979
|
margin: 10px 10px;
|
|
1001
980
|
width: 180px;
|
|
@@ -1004,7 +983,7 @@
|
|
|
1004
983
|
border-radius: 2px 2px 2px 2px;
|
|
1005
984
|
padding: 20px 10px;
|
|
1006
985
|
}
|
|
1007
|
-
.serviceflow-nodeTitle[data-v-
|
|
986
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
1008
987
|
width: 90px;
|
|
1009
988
|
height: 15px;
|
|
1010
989
|
font-weight: 400;
|
|
@@ -1020,7 +999,7 @@
|
|
|
1020
999
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1021
1000
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1022
1001
|
}
|
|
1023
|
-
.serviceflow-nodeContent[data-v-
|
|
1002
|
+
.serviceflow-nodeContent[data-v-b04d3f8b] {
|
|
1024
1003
|
/* width: 100%; */
|
|
1025
1004
|
height: 15px;
|
|
1026
1005
|
font-weight: 400;
|
|
@@ -1036,19 +1015,19 @@
|
|
|
1036
1015
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1037
1016
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1038
1017
|
}
|
|
1039
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1018
|
+
.serviceflow-nodeContent-desc[data-v-b04d3f8b] {
|
|
1040
1019
|
}
|
|
1041
|
-
.el-divider--horizontal[data-v-
|
|
1020
|
+
.el-divider--horizontal[data-v-b04d3f8b] {
|
|
1042
1021
|
margin: 12px 0;
|
|
1043
1022
|
}
|
|
1044
|
-
.serviceflow-nodeView[data-v-
|
|
1023
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
1045
1024
|
border: 1px solid #5a90f9;
|
|
1046
1025
|
background: #eef3fe;
|
|
1047
1026
|
}
|
|
1048
|
-
.serviceflow-nodeTitle[data-v-
|
|
1027
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
1049
1028
|
width: 80px;
|
|
1050
1029
|
}
|
|
1051
|
-
.serviceflow-nodeView[data-v-
|
|
1030
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
1052
1031
|
box-sizing: border-box;
|
|
1053
1032
|
margin: 10px 10px;
|
|
1054
1033
|
width: 180px;
|
|
@@ -1057,7 +1036,7 @@
|
|
|
1057
1036
|
border-radius: 2px 2px 2px 2px;
|
|
1058
1037
|
padding: 20px 10px;
|
|
1059
1038
|
}
|
|
1060
|
-
.serviceflow-nodeTitle[data-v-
|
|
1039
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
1061
1040
|
width: 90px;
|
|
1062
1041
|
height: 15px;
|
|
1063
1042
|
font-weight: 400;
|
|
@@ -1073,7 +1052,7 @@
|
|
|
1073
1052
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1074
1053
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1075
1054
|
}
|
|
1076
|
-
.serviceflow-nodeContent[data-v-
|
|
1055
|
+
.serviceflow-nodeContent[data-v-23f1c97b] {
|
|
1077
1056
|
/* width: 100%; */
|
|
1078
1057
|
height: 15px;
|
|
1079
1058
|
font-weight: 400;
|
|
@@ -1089,19 +1068,39 @@
|
|
|
1089
1068
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1090
1069
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1091
1070
|
}
|
|
1092
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1071
|
+
.serviceflow-nodeContent-desc[data-v-23f1c97b] {
|
|
1093
1072
|
}
|
|
1094
|
-
.el-divider--horizontal[data-v-
|
|
1073
|
+
.el-divider--horizontal[data-v-23f1c97b] {
|
|
1095
1074
|
margin: 12px 0;
|
|
1096
1075
|
}
|
|
1097
|
-
.serviceflow-nodeView[data-v-
|
|
1076
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
1098
1077
|
border: 1px solid #5a90f9;
|
|
1099
1078
|
background: #eef3fe;
|
|
1100
1079
|
}
|
|
1101
|
-
.serviceflow-nodeTitle[data-v-
|
|
1080
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
1102
1081
|
width: 80px;
|
|
1103
1082
|
}
|
|
1104
|
-
|
|
1083
|
+
|
|
1084
|
+
.aaa[data-v-8bd72b80] {
|
|
1085
|
+
width: 300px;
|
|
1086
|
+
height: 200px;
|
|
1087
|
+
background: #ffffff;
|
|
1088
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1089
|
+
border-radius: 2px 2px 2px 2px;
|
|
1090
|
+
}
|
|
1091
|
+
.content[data-v-8bd72b80] {
|
|
1092
|
+
width: 28px;
|
|
1093
|
+
height: 15px;
|
|
1094
|
+
font-weight: 400;
|
|
1095
|
+
font-size: 14px;
|
|
1096
|
+
color: #333333;
|
|
1097
|
+
line-height: 14px;
|
|
1098
|
+
text-align: left;
|
|
1099
|
+
font-style: normal;
|
|
1100
|
+
text-transform: none;
|
|
1101
|
+
padding: 5px 0px 4px 10px;
|
|
1102
|
+
}
|
|
1103
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
1105
1104
|
box-sizing: border-box;
|
|
1106
1105
|
margin: 10px 10px;
|
|
1107
1106
|
width: 180px;
|
|
@@ -1110,7 +1109,7 @@
|
|
|
1110
1109
|
border-radius: 2px 2px 2px 2px;
|
|
1111
1110
|
padding: 20px 10px;
|
|
1112
1111
|
}
|
|
1113
|
-
.serviceflow-nodeTitle[data-v-
|
|
1112
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
1114
1113
|
width: 90px;
|
|
1115
1114
|
height: 15px;
|
|
1116
1115
|
font-weight: 400;
|
|
@@ -1126,7 +1125,7 @@
|
|
|
1126
1125
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1127
1126
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1128
1127
|
}
|
|
1129
|
-
.serviceflow-nodeContent[data-v-
|
|
1128
|
+
.serviceflow-nodeContent[data-v-9770119b] {
|
|
1130
1129
|
/* width: 100%; */
|
|
1131
1130
|
height: 15px;
|
|
1132
1131
|
font-weight: 400;
|
|
@@ -1142,19 +1141,19 @@
|
|
|
1142
1141
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1143
1142
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1144
1143
|
}
|
|
1145
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1144
|
+
.serviceflow-nodeContent-desc[data-v-9770119b] {
|
|
1146
1145
|
}
|
|
1147
|
-
.el-divider--horizontal[data-v-
|
|
1146
|
+
.el-divider--horizontal[data-v-9770119b] {
|
|
1148
1147
|
margin: 12px 0;
|
|
1149
1148
|
}
|
|
1150
|
-
.serviceflow-nodeView[data-v-
|
|
1149
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
1151
1150
|
border: 1px solid #5a90f9;
|
|
1152
1151
|
background: #eef3fe;
|
|
1153
1152
|
}
|
|
1154
|
-
.serviceflow-nodeTitle[data-v-
|
|
1153
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
1155
1154
|
width: 80px;
|
|
1156
1155
|
}
|
|
1157
|
-
.serviceflow-nodeView[data-v-
|
|
1156
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
1158
1157
|
box-sizing: border-box;
|
|
1159
1158
|
margin: 10px 10px;
|
|
1160
1159
|
width: 180px;
|
|
@@ -1163,7 +1162,7 @@
|
|
|
1163
1162
|
border-radius: 2px 2px 2px 2px;
|
|
1164
1163
|
padding: 20px 10px;
|
|
1165
1164
|
}
|
|
1166
|
-
.serviceflow-nodeTitle[data-v-
|
|
1165
|
+
.serviceflow-nodeTitle[data-v-3c23a172] {
|
|
1167
1166
|
width: 90px;
|
|
1168
1167
|
height: 15px;
|
|
1169
1168
|
font-weight: 400;
|
|
@@ -1179,7 +1178,7 @@
|
|
|
1179
1178
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1180
1179
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1181
1180
|
}
|
|
1182
|
-
.serviceflow-nodeContent[data-v-
|
|
1181
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
1183
1182
|
/* width: 100%; */
|
|
1184
1183
|
height: 15px;
|
|
1185
1184
|
font-weight: 400;
|
|
@@ -1195,19 +1194,20 @@
|
|
|
1195
1194
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1196
1195
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1197
1196
|
}
|
|
1198
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1197
|
+
.serviceflow-nodeContent-desc[data-v-3c23a172] {
|
|
1199
1198
|
}
|
|
1200
|
-
.el-divider--horizontal[data-v-
|
|
1199
|
+
.el-divider--horizontal[data-v-3c23a172] {
|
|
1201
1200
|
margin: 12px 0;
|
|
1202
1201
|
}
|
|
1203
|
-
.serviceflow-nodeView[data-v-
|
|
1202
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
1204
1203
|
border: 1px solid #5a90f9;
|
|
1205
|
-
background: #eef3fe;
|
|
1204
|
+
background: #eef3fe;
|
|
1205
|
+
width: 180px;
|
|
1206
|
+
min-height: 95px;
|
|
1206
1207
|
}
|
|
1207
|
-
.serviceflow-
|
|
1208
|
-
width: 80px;
|
|
1208
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
1209
1209
|
}
|
|
1210
|
-
.serviceflow-nodeView[data-v-
|
|
1210
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
1211
1211
|
box-sizing: border-box;
|
|
1212
1212
|
margin: 10px 10px;
|
|
1213
1213
|
width: 180px;
|
|
@@ -1216,7 +1216,7 @@
|
|
|
1216
1216
|
border-radius: 2px 2px 2px 2px;
|
|
1217
1217
|
padding: 20px 10px;
|
|
1218
1218
|
}
|
|
1219
|
-
.serviceflow-nodeTitle[data-v-
|
|
1219
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
1220
1220
|
width: 90px;
|
|
1221
1221
|
height: 15px;
|
|
1222
1222
|
font-weight: 400;
|
|
@@ -1232,7 +1232,7 @@
|
|
|
1232
1232
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1233
1233
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1234
1234
|
}
|
|
1235
|
-
.serviceflow-nodeContent[data-v-
|
|
1235
|
+
.serviceflow-nodeContent[data-v-91a913ff] {
|
|
1236
1236
|
/* width: 100%; */
|
|
1237
1237
|
height: 15px;
|
|
1238
1238
|
font-weight: 400;
|
|
@@ -1248,23 +1248,19 @@
|
|
|
1248
1248
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1249
1249
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1250
1250
|
}
|
|
1251
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1251
|
+
.serviceflow-nodeContent-desc[data-v-91a913ff] {
|
|
1252
1252
|
}
|
|
1253
|
-
.el-divider--horizontal[data-v-
|
|
1253
|
+
.el-divider--horizontal[data-v-91a913ff] {
|
|
1254
1254
|
margin: 12px 0;
|
|
1255
1255
|
}
|
|
1256
|
-
.serviceflow-nodeView[data-v-
|
|
1256
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
1257
1257
|
border: 1px solid #5a90f9;
|
|
1258
1258
|
background: #eef3fe;
|
|
1259
1259
|
}
|
|
1260
|
-
.serviceflow-nodeTitle[data-v-
|
|
1260
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
1261
1261
|
width: 80px;
|
|
1262
1262
|
}
|
|
1263
1263
|
|
|
1264
|
-
.el-radio[data-v-1bbd6187] {
|
|
1265
|
-
margin-right: 10px;
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
1264
|
.el-select + .el-input[data-v-b53b2895] {
|
|
1269
1265
|
margin-left: 10px;
|
|
1270
1266
|
}
|
|
@@ -1275,13 +1271,6 @@
|
|
|
1275
1271
|
margin-left: 10px;
|
|
1276
1272
|
}
|
|
1277
1273
|
|
|
1278
|
-
.el-radio[data-v-1ee0eb33] {
|
|
1279
|
-
margin-right: 10px;
|
|
1280
|
-
}
|
|
1281
|
-
[data-v-1ee0eb33] .el-empty__description {
|
|
1282
|
-
margin-top: 0px;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
1274
|
.el-select + .el-input[data-v-7fcf8a84] {
|
|
1286
1275
|
margin-left: 10px;
|
|
1287
1276
|
}
|
|
@@ -1292,17 +1281,28 @@
|
|
|
1292
1281
|
margin-left: 10px;
|
|
1293
1282
|
}
|
|
1294
1283
|
|
|
1295
|
-
[data-v-
|
|
1284
|
+
.el-radio[data-v-1bbd6187] {
|
|
1285
|
+
margin-right: 10px;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
.el-radio[data-v-1ee0eb33] {
|
|
1289
|
+
margin-right: 10px;
|
|
1290
|
+
}
|
|
1291
|
+
[data-v-1ee0eb33] .el-empty__description {
|
|
1292
|
+
margin-top: 0px;
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
[data-v-21f429a9] .el-cascader-menu {
|
|
1296
1296
|
min-width: 120px !important;
|
|
1297
1297
|
}
|
|
1298
|
-
.totalStyle[data-v-
|
|
1298
|
+
.totalStyle[data-v-21f429a9] {
|
|
1299
1299
|
display: flex;
|
|
1300
1300
|
height: 15px;
|
|
1301
1301
|
align-items: center;
|
|
1302
1302
|
justify-content: center;
|
|
1303
1303
|
font-size: 10px;
|
|
1304
1304
|
}
|
|
1305
|
-
[data-v-
|
|
1305
|
+
[data-v-21f429a9] .el-input-group__append {
|
|
1306
1306
|
cursor: pointer;
|
|
1307
1307
|
}
|
|
1308
1308
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "service-flow-designer",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.53",
|
|
4
4
|
"description": "AgileBuilder Service Flow Designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@logicflow/layout": "1.2.0-alpha.16",
|
|
62
62
|
"@uiw/codemirror-themes-all": "^4.21.25",
|
|
63
63
|
"@vueuse/core": "^10.9.0",
|
|
64
|
-
"agilebuilder-ui": "1.0.
|
|
64
|
+
"agilebuilder-ui": "1.0.87",
|
|
65
65
|
"codemirror": "^6.0.1",
|
|
66
66
|
"nprogress": "^0.2.0",
|
|
67
67
|
"pinia": "^2.1.7",
|