service-flow-designer 2.1.51 → 2.1.56
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/designer/service-flow-view/service-update-log.vue.js +1 -1
- package/dist/es/designer/service-flow-view/service-update-log.vue2.js +8 -3
- package/dist/es/style.css +261 -261
- 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
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./service-update-log.vue2.js";
|
|
2
2
|
import "./service-update-log.vue3.js";
|
|
3
3
|
import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const serviceUpdateLog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const serviceUpdateLog = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7d8d63a2"]]);
|
|
5
5
|
export {
|
|
6
6
|
serviceUpdateLog as default
|
|
7
7
|
};
|
|
@@ -13,7 +13,7 @@ import { defineComponent, ref, openBlock, createBlock, withCtx, createElementVNo
|
|
|
13
13
|
import { isDeepEqual } from "../common/util/node-util.js";
|
|
14
14
|
import http from "agilebuilder-ui/src/utils/request";
|
|
15
15
|
import { ElMessage } from "element-plus";
|
|
16
|
-
const _withScopeId = (n) => (pushScopeId("data-v-
|
|
16
|
+
const _withScopeId = (n) => (pushScopeId("data-v-7d8d63a2"), n = n(), popScopeId(), n);
|
|
17
17
|
const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { style: { "text-align": "center" } }, "修改记录", -1));
|
|
18
18
|
const _hoisted_2 = { class: "dialog-footer" };
|
|
19
19
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
@@ -79,12 +79,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
79
79
|
}
|
|
80
80
|
});
|
|
81
81
|
}
|
|
82
|
+
function returnLog() {
|
|
83
|
+
dialogVisible.value = false;
|
|
84
|
+
description.value = "";
|
|
85
|
+
}
|
|
82
86
|
function saveLog() {
|
|
83
87
|
if (!description.value) {
|
|
84
88
|
ElMessage.warning("请输入修改记录");
|
|
85
89
|
return;
|
|
86
90
|
}
|
|
87
91
|
emits("save", description.value);
|
|
92
|
+
description.value = "";
|
|
88
93
|
}
|
|
89
94
|
function closeDialog() {
|
|
90
95
|
dialogVisible.value = false;
|
|
@@ -120,7 +125,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
120
125
|
const _component_el_dialog = ElDialog;
|
|
121
126
|
return openBlock(), createBlock(_component_el_dialog, {
|
|
122
127
|
modelValue: dialogVisible.value,
|
|
123
|
-
"onUpdate:modelValue": _cache[
|
|
128
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => dialogVisible.value = $event),
|
|
124
129
|
"append-to-body": "",
|
|
125
130
|
title: "保存服务",
|
|
126
131
|
width: "50%"
|
|
@@ -129,7 +134,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
129
134
|
createElementVNode("div", _hoisted_2, [
|
|
130
135
|
createVNode(_component_el_button, {
|
|
131
136
|
size: "small",
|
|
132
|
-
onClick:
|
|
137
|
+
onClick: returnLog
|
|
133
138
|
}, {
|
|
134
139
|
default: withCtx(() => [
|
|
135
140
|
createTextVNode("返回")
|
package/dist/es/style.css
CHANGED
|
@@ -184,6 +184,20 @@
|
|
|
184
184
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
+
[data-v-dac15197] .el-radio {
|
|
188
|
+
margin: 0;
|
|
189
|
+
}
|
|
190
|
+
.el-radio + .el-radio[data-v-dac15197] {
|
|
191
|
+
margin-left: 10px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.el-alert + .el-form-item[data-v-32875028] {
|
|
195
|
+
margin-top: 10px;
|
|
196
|
+
}
|
|
197
|
+
.el-alert + .el-table[data-v-32875028] {
|
|
198
|
+
margin: 10px 0;
|
|
199
|
+
}
|
|
200
|
+
|
|
187
201
|
.el-alert + .el-table[data-v-d978e7dc] {
|
|
188
202
|
margin-top: 10px;
|
|
189
203
|
}
|
|
@@ -193,12 +207,78 @@
|
|
|
193
207
|
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
194
208
|
margin-top: 10px;
|
|
195
209
|
}
|
|
210
|
+
.serviceflow-attr-base-content[data-v-8bad091d] {
|
|
211
|
+
background: #ffffff;
|
|
212
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
213
|
+
height: 100%;
|
|
214
|
+
padding-left: 10px;
|
|
215
|
+
padding-right: 10px;
|
|
216
|
+
overflow: auto;
|
|
217
|
+
}
|
|
218
|
+
.serviceflow-attr-item[data-v-8bad091d] {
|
|
219
|
+
margin-bottom: 8px;
|
|
220
|
+
}
|
|
221
|
+
.serviceflow-attr-group-header > button[data-v-8bad091d] {
|
|
222
|
+
background: #f5f6f8;
|
|
223
|
+
padding-left: 10px;
|
|
224
|
+
font-size: 14px;
|
|
225
|
+
height: 42px;
|
|
226
|
+
}
|
|
227
|
+
.serviceflow-attr-content[data-v-8bad091d] {
|
|
228
|
+
background: #ffffff;
|
|
229
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
230
|
+
height: 100%;
|
|
231
|
+
padding-left: 10px;
|
|
232
|
+
padding-right: 10px;
|
|
233
|
+
overflow: auto;
|
|
234
|
+
position: relative;
|
|
235
|
+
}
|
|
236
|
+
.serviceflow-attr-header-search[data-v-8bad091d] {
|
|
237
|
+
margin-top: 16px;
|
|
238
|
+
}
|
|
239
|
+
.serviceflow-attr-header-select[data-v-8bad091d] {
|
|
240
|
+
width: 90px;
|
|
241
|
+
height: 36px;
|
|
242
|
+
}
|
|
243
|
+
.serviceflow-page-param-row[data-v-8bad091d] {
|
|
244
|
+
height: 34px;
|
|
245
|
+
}
|
|
246
|
+
.el-table__cell > .cell[data-v-8bad091d] {
|
|
247
|
+
white-space: nowrap !important;
|
|
248
|
+
}
|
|
249
|
+
.serviceflow-item[data-v-8bad091d] {
|
|
250
|
+
background: rgba(88, 147, 239, 0.06);
|
|
251
|
+
border: 1px dashed rgba(88, 147, 239, 0.06);
|
|
252
|
+
border-radius: 4px 4px 4px 4px;
|
|
253
|
+
text-align: center;
|
|
254
|
+
margin-top: 12px;
|
|
255
|
+
padding: 10px 5px 10px 5px;
|
|
256
|
+
font-size: 12px;
|
|
257
|
+
cursor: move;
|
|
258
|
+
height: 60px;
|
|
259
|
+
overflow: hidden;
|
|
260
|
+
box-sizing: border-box;
|
|
261
|
+
color: #333333;
|
|
262
|
+
text-overflow: ellipsis;
|
|
263
|
+
white-space: nowrap;
|
|
264
|
+
-webkit-user-select: none; /* Safari */
|
|
265
|
+
-moz-user-select: none; /* Firefox */
|
|
266
|
+
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
267
|
+
user-select: none; /* 标准语法 */
|
|
268
|
+
}
|
|
269
|
+
.serviceflow-item[data-v-8bad091d]:hover {
|
|
270
|
+
background: rgba(11, 45, 101, 0.105);
|
|
271
|
+
border: 1px dashed rgba(11, 45, 101, 0.227);
|
|
272
|
+
}
|
|
273
|
+
.amb-assembly-item-drag[data-v-8bad091d] {
|
|
274
|
+
opacity: 1 !important;
|
|
275
|
+
}
|
|
196
276
|
|
|
197
|
-
.el-alert + .el-table[data-v-
|
|
277
|
+
.el-alert + .el-table[data-v-028fb838] {
|
|
198
278
|
margin-top: 10px;
|
|
199
279
|
}
|
|
200
|
-
.el-
|
|
201
|
-
margin
|
|
280
|
+
.el-table + .el-alert[data-v-028fb838] {
|
|
281
|
+
margin: 10px 0;
|
|
202
282
|
}
|
|
203
283
|
.serviceflow-control-item[data-v-a2bd7452] {
|
|
204
284
|
top: -5px;
|
|
@@ -332,112 +412,11 @@
|
|
|
332
412
|
margin-left: 50px;
|
|
333
413
|
}
|
|
334
414
|
|
|
335
|
-
.
|
|
336
|
-
margin-left: auto;
|
|
337
|
-
}
|
|
338
|
-
.editorOption[data-v-684c1f08] {
|
|
339
|
-
margin-right: 10px;
|
|
340
|
-
cursor: pointer;
|
|
341
|
-
}
|
|
342
|
-
.pppp[data-v-684c1f08] {
|
|
343
|
-
display: flex; /* 使用Flex布局 */
|
|
344
|
-
justify-content: flex-start;
|
|
345
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.el-dialog__wrapper[data-v-7a4cbbaf] {
|
|
349
|
-
overflow: hidden !important;
|
|
350
|
-
padding-right: 0 !important;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
[data-v-43e78808] .el-radio {
|
|
354
|
-
margin: 0;
|
|
355
|
-
}
|
|
356
|
-
.el-radio + .el-radio[data-v-43e78808] {
|
|
357
|
-
margin-left: 10px;
|
|
358
|
-
}
|
|
359
|
-
.serviceflow-attr-base-content[data-v-8bad091d] {
|
|
360
|
-
background: #ffffff;
|
|
361
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
362
|
-
height: 100%;
|
|
363
|
-
padding-left: 10px;
|
|
364
|
-
padding-right: 10px;
|
|
365
|
-
overflow: auto;
|
|
366
|
-
}
|
|
367
|
-
.serviceflow-attr-item[data-v-8bad091d] {
|
|
368
|
-
margin-bottom: 8px;
|
|
369
|
-
}
|
|
370
|
-
.serviceflow-attr-group-header > button[data-v-8bad091d] {
|
|
371
|
-
background: #f5f6f8;
|
|
372
|
-
padding-left: 10px;
|
|
373
|
-
font-size: 14px;
|
|
374
|
-
height: 42px;
|
|
375
|
-
}
|
|
376
|
-
.serviceflow-attr-content[data-v-8bad091d] {
|
|
377
|
-
background: #ffffff;
|
|
378
|
-
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
379
|
-
height: 100%;
|
|
380
|
-
padding-left: 10px;
|
|
381
|
-
padding-right: 10px;
|
|
382
|
-
overflow: auto;
|
|
383
|
-
position: relative;
|
|
384
|
-
}
|
|
385
|
-
.serviceflow-attr-header-search[data-v-8bad091d] {
|
|
386
|
-
margin-top: 16px;
|
|
387
|
-
}
|
|
388
|
-
.serviceflow-attr-header-select[data-v-8bad091d] {
|
|
389
|
-
width: 90px;
|
|
390
|
-
height: 36px;
|
|
391
|
-
}
|
|
392
|
-
.serviceflow-page-param-row[data-v-8bad091d] {
|
|
393
|
-
height: 34px;
|
|
394
|
-
}
|
|
395
|
-
.el-table__cell > .cell[data-v-8bad091d] {
|
|
396
|
-
white-space: nowrap !important;
|
|
397
|
-
}
|
|
398
|
-
.serviceflow-item[data-v-8bad091d] {
|
|
399
|
-
background: rgba(88, 147, 239, 0.06);
|
|
400
|
-
border: 1px dashed rgba(88, 147, 239, 0.06);
|
|
401
|
-
border-radius: 4px 4px 4px 4px;
|
|
402
|
-
text-align: center;
|
|
403
|
-
margin-top: 12px;
|
|
404
|
-
padding: 10px 5px 10px 5px;
|
|
405
|
-
font-size: 12px;
|
|
406
|
-
cursor: move;
|
|
407
|
-
height: 60px;
|
|
408
|
-
overflow: hidden;
|
|
409
|
-
box-sizing: border-box;
|
|
410
|
-
color: #333333;
|
|
411
|
-
text-overflow: ellipsis;
|
|
412
|
-
white-space: nowrap;
|
|
413
|
-
-webkit-user-select: none; /* Safari */
|
|
414
|
-
-moz-user-select: none; /* Firefox */
|
|
415
|
-
-ms-user-select: none; /* Internet Explorer/Edge */
|
|
416
|
-
user-select: none; /* 标准语法 */
|
|
417
|
-
}
|
|
418
|
-
.serviceflow-item[data-v-8bad091d]:hover {
|
|
419
|
-
background: rgba(11, 45, 101, 0.105);
|
|
420
|
-
border: 1px dashed rgba(11, 45, 101, 0.227);
|
|
421
|
-
}
|
|
422
|
-
.amb-assembly-item-drag[data-v-8bad091d] {
|
|
423
|
-
opacity: 1 !important;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
.el-drawer__header {
|
|
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] {
|
|
415
|
+
.el-alert + .el-table[data-v-82e0dfef] {
|
|
437
416
|
margin-top: 10px;
|
|
438
417
|
}
|
|
439
|
-
.el-alert + .el-
|
|
440
|
-
margin: 10px
|
|
418
|
+
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
419
|
+
margin-top: 10px;
|
|
441
420
|
}
|
|
442
421
|
|
|
443
422
|
[data-v-da8fc67a] .el-table__row {
|
|
@@ -476,58 +455,58 @@
|
|
|
476
455
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
477
456
|
}
|
|
478
457
|
|
|
479
|
-
.el-
|
|
480
|
-
margin-
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
|
|
458
|
+
.el-drawer__header {
|
|
459
|
+
margin-bottom: 0 !important;
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
463
|
+
*/
|
|
464
|
+
[data-v-d5185214] .el-overlay {
|
|
465
|
+
position: static;
|
|
484
466
|
}
|
|
485
467
|
|
|
486
|
-
.el-
|
|
468
|
+
.el-dialog__wrapper[data-v-7d8d63a2] {
|
|
469
|
+
overflow: hidden !important;
|
|
470
|
+
padding-right: 0 !important;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
487
474
|
margin-top: 10px;
|
|
488
475
|
}
|
|
489
|
-
.el-table + .el-alert[data-v-
|
|
476
|
+
.el-table + .el-alert[data-v-e27c4c1e] {
|
|
490
477
|
margin: 10px 0;
|
|
478
|
+
}
|
|
479
|
+
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
480
|
+
margin-top: 10px;
|
|
491
481
|
}
|
|
492
482
|
|
|
493
|
-
[data-v-
|
|
483
|
+
[data-v-f9e164ec] .el-radio {
|
|
494
484
|
margin: 0;
|
|
495
485
|
}
|
|
496
|
-
.el-radio + .el-radio[data-v-
|
|
486
|
+
.el-radio + .el-radio[data-v-f9e164ec] {
|
|
497
487
|
margin-left: 10px;
|
|
498
488
|
}
|
|
499
489
|
|
|
500
|
-
.el-
|
|
490
|
+
.el-tabs + .el-alert[data-v-08737620] {
|
|
501
491
|
margin-top: 10px;
|
|
502
492
|
}
|
|
503
|
-
.el-
|
|
504
|
-
margin: 10px 0;
|
|
505
|
-
}
|
|
506
|
-
.el-alert + .el-form-item[data-v-e27c4c1e] {
|
|
493
|
+
.el-alert + .el-form-item[data-v-08737620] {
|
|
507
494
|
margin-top: 10px;
|
|
508
495
|
}
|
|
509
496
|
|
|
510
|
-
.
|
|
511
|
-
|
|
512
|
-
height: 44px;
|
|
513
|
-
background: #ffffff;
|
|
514
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
515
|
-
border-radius: 2px 2px 2px 2px;
|
|
497
|
+
.editorTool[data-v-684c1f08] {
|
|
498
|
+
margin-left: auto;
|
|
516
499
|
}
|
|
517
|
-
.
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
font-style: normal;
|
|
526
|
-
text-transform: none;
|
|
527
|
-
padding: 5px 0px 4px 10px;
|
|
528
|
-
box-sizing: content-box;
|
|
500
|
+
.editorOption[data-v-684c1f08] {
|
|
501
|
+
margin-right: 10px;
|
|
502
|
+
cursor: pointer;
|
|
503
|
+
}
|
|
504
|
+
.pppp[data-v-684c1f08] {
|
|
505
|
+
display: flex; /* 使用Flex布局 */
|
|
506
|
+
justify-content: flex-start;
|
|
507
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
529
508
|
}
|
|
530
|
-
.serviceflow-nodeView[data-v-
|
|
509
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
531
510
|
box-sizing: border-box;
|
|
532
511
|
margin: 10px 10px;
|
|
533
512
|
width: 180px;
|
|
@@ -536,7 +515,7 @@
|
|
|
536
515
|
border-radius: 2px 2px 2px 2px;
|
|
537
516
|
padding: 20px 10px;
|
|
538
517
|
}
|
|
539
|
-
.serviceflow-nodeTitle[data-v-
|
|
518
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
540
519
|
width: 90px;
|
|
541
520
|
height: 15px;
|
|
542
521
|
font-weight: 400;
|
|
@@ -552,7 +531,7 @@
|
|
|
552
531
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
553
532
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
554
533
|
}
|
|
555
|
-
.serviceflow-nodeContent[data-v-
|
|
534
|
+
.serviceflow-nodeContent[data-v-9770119b] {
|
|
556
535
|
/* width: 100%; */
|
|
557
536
|
height: 15px;
|
|
558
537
|
font-weight: 400;
|
|
@@ -568,19 +547,40 @@
|
|
|
568
547
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
569
548
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
570
549
|
}
|
|
571
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
550
|
+
.serviceflow-nodeContent-desc[data-v-9770119b] {
|
|
572
551
|
}
|
|
573
|
-
.el-divider--horizontal[data-v-
|
|
552
|
+
.el-divider--horizontal[data-v-9770119b] {
|
|
574
553
|
margin: 12px 0;
|
|
575
554
|
}
|
|
576
|
-
.serviceflow-nodeView[data-v-
|
|
555
|
+
.serviceflow-nodeView[data-v-9770119b] {
|
|
577
556
|
border: 1px solid #5a90f9;
|
|
578
557
|
background: #eef3fe;
|
|
579
558
|
}
|
|
580
|
-
.serviceflow-nodeTitle[data-v-
|
|
559
|
+
.serviceflow-nodeTitle[data-v-9770119b] {
|
|
581
560
|
width: 80px;
|
|
582
561
|
}
|
|
583
|
-
|
|
562
|
+
|
|
563
|
+
.node-content[data-v-669b618f] {
|
|
564
|
+
width: 120px;
|
|
565
|
+
height: 44px;
|
|
566
|
+
background: #ffffff;
|
|
567
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
568
|
+
border-radius: 2px 2px 2px 2px;
|
|
569
|
+
}
|
|
570
|
+
.content[data-v-669b618f] {
|
|
571
|
+
width: 28px;
|
|
572
|
+
height: 15px;
|
|
573
|
+
font-weight: 400;
|
|
574
|
+
font-size: 14px;
|
|
575
|
+
color: #333333;
|
|
576
|
+
line-height: 14px;
|
|
577
|
+
text-align: left;
|
|
578
|
+
font-style: normal;
|
|
579
|
+
text-transform: none;
|
|
580
|
+
padding: 5px 0px 4px 10px;
|
|
581
|
+
box-sizing: content-box;
|
|
582
|
+
}
|
|
583
|
+
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
584
584
|
box-sizing: border-box;
|
|
585
585
|
margin: 10px 10px;
|
|
586
586
|
width: 180px;
|
|
@@ -589,7 +589,7 @@
|
|
|
589
589
|
border-radius: 2px 2px 2px 2px;
|
|
590
590
|
padding: 20px 10px;
|
|
591
591
|
}
|
|
592
|
-
.serviceflow-nodeTitle[data-v-
|
|
592
|
+
.serviceflow-nodeTitle[data-v-6b34f36c] {
|
|
593
593
|
width: 90px;
|
|
594
594
|
height: 15px;
|
|
595
595
|
font-weight: 400;
|
|
@@ -605,7 +605,7 @@
|
|
|
605
605
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
606
606
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
607
607
|
}
|
|
608
|
-
.serviceflow-nodeContent[data-v-
|
|
608
|
+
.serviceflow-nodeContent[data-v-6b34f36c] {
|
|
609
609
|
/* width: 100%; */
|
|
610
610
|
height: 15px;
|
|
611
611
|
font-weight: 400;
|
|
@@ -621,20 +621,19 @@
|
|
|
621
621
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
622
622
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
623
623
|
}
|
|
624
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
624
|
+
.serviceflow-nodeContent-desc[data-v-6b34f36c] {
|
|
625
625
|
}
|
|
626
|
-
.el-divider--horizontal[data-v-
|
|
626
|
+
.el-divider--horizontal[data-v-6b34f36c] {
|
|
627
627
|
margin: 12px 0;
|
|
628
628
|
}
|
|
629
|
-
.serviceflow-nodeView[data-v-
|
|
629
|
+
.serviceflow-nodeView[data-v-6b34f36c] {
|
|
630
630
|
border: 1px solid #5a90f9;
|
|
631
|
-
background: #eef3fe;
|
|
632
|
-
width: 180px;
|
|
633
|
-
min-height: 95px;
|
|
631
|
+
background: #eef3fe;
|
|
634
632
|
}
|
|
635
|
-
.serviceflow-
|
|
633
|
+
.serviceflow-nodeTitle[data-v-6b34f36c] {
|
|
634
|
+
width: 80px;
|
|
636
635
|
}
|
|
637
|
-
.serviceflow-nodeView[data-v-
|
|
636
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
638
637
|
box-sizing: border-box;
|
|
639
638
|
margin: 10px 10px;
|
|
640
639
|
width: 180px;
|
|
@@ -643,7 +642,7 @@
|
|
|
643
642
|
border-radius: 2px 2px 2px 2px;
|
|
644
643
|
padding: 20px 10px;
|
|
645
644
|
}
|
|
646
|
-
.serviceflow-nodeTitle[data-v-
|
|
645
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
647
646
|
width: 90px;
|
|
648
647
|
height: 15px;
|
|
649
648
|
font-weight: 400;
|
|
@@ -659,7 +658,7 @@
|
|
|
659
658
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
660
659
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
661
660
|
}
|
|
662
|
-
.serviceflow-nodeContent[data-v-
|
|
661
|
+
.serviceflow-nodeContent[data-v-23f1c97b] {
|
|
663
662
|
/* width: 100%; */
|
|
664
663
|
height: 15px;
|
|
665
664
|
font-weight: 400;
|
|
@@ -675,19 +674,40 @@
|
|
|
675
674
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
676
675
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
677
676
|
}
|
|
678
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
677
|
+
.serviceflow-nodeContent-desc[data-v-23f1c97b] {
|
|
679
678
|
}
|
|
680
|
-
.el-divider--horizontal[data-v-
|
|
679
|
+
.el-divider--horizontal[data-v-23f1c97b] {
|
|
681
680
|
margin: 12px 0;
|
|
682
681
|
}
|
|
683
|
-
.serviceflow-nodeView[data-v-
|
|
682
|
+
.serviceflow-nodeView[data-v-23f1c97b] {
|
|
684
683
|
border: 1px solid #5a90f9;
|
|
685
684
|
background: #eef3fe;
|
|
686
685
|
}
|
|
687
|
-
.serviceflow-nodeTitle[data-v-
|
|
686
|
+
.serviceflow-nodeTitle[data-v-23f1c97b] {
|
|
688
687
|
width: 80px;
|
|
689
688
|
}
|
|
690
|
-
|
|
689
|
+
|
|
690
|
+
.node-content[data-v-117d4091] {
|
|
691
|
+
width: 120px;
|
|
692
|
+
height: 44px;
|
|
693
|
+
background: #ffffff;
|
|
694
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
695
|
+
border-radius: 2px 2px 2px 2px;
|
|
696
|
+
}
|
|
697
|
+
.content[data-v-117d4091] {
|
|
698
|
+
width: 28px;
|
|
699
|
+
height: 15px;
|
|
700
|
+
font-weight: 400;
|
|
701
|
+
font-size: 14px;
|
|
702
|
+
color: #333333;
|
|
703
|
+
line-height: 14px;
|
|
704
|
+
text-align: left;
|
|
705
|
+
font-style: normal;
|
|
706
|
+
text-transform: none;
|
|
707
|
+
padding: 5px 0px 4px 10px;
|
|
708
|
+
box-sizing: content-box;
|
|
709
|
+
}
|
|
710
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
691
711
|
box-sizing: border-box;
|
|
692
712
|
margin: 10px 10px;
|
|
693
713
|
width: 180px;
|
|
@@ -696,7 +716,7 @@
|
|
|
696
716
|
border-radius: 2px 2px 2px 2px;
|
|
697
717
|
padding: 20px 10px;
|
|
698
718
|
}
|
|
699
|
-
.serviceflow-nodeTitle[data-v-
|
|
719
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
700
720
|
width: 90px;
|
|
701
721
|
height: 15px;
|
|
702
722
|
font-weight: 400;
|
|
@@ -712,7 +732,7 @@
|
|
|
712
732
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
713
733
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
714
734
|
}
|
|
715
|
-
.serviceflow-nodeContent[data-v-
|
|
735
|
+
.serviceflow-nodeContent[data-v-91a913ff] {
|
|
716
736
|
/* width: 100%; */
|
|
717
737
|
height: 15px;
|
|
718
738
|
font-weight: 400;
|
|
@@ -728,27 +748,27 @@
|
|
|
728
748
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
729
749
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
730
750
|
}
|
|
731
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
751
|
+
.serviceflow-nodeContent-desc[data-v-91a913ff] {
|
|
732
752
|
}
|
|
733
|
-
.el-divider--horizontal[data-v-
|
|
753
|
+
.el-divider--horizontal[data-v-91a913ff] {
|
|
734
754
|
margin: 12px 0;
|
|
735
755
|
}
|
|
736
|
-
.serviceflow-nodeView[data-v-
|
|
756
|
+
.serviceflow-nodeView[data-v-91a913ff] {
|
|
737
757
|
border: 1px solid #5a90f9;
|
|
738
758
|
background: #eef3fe;
|
|
739
759
|
}
|
|
740
|
-
.serviceflow-nodeTitle[data-v-
|
|
760
|
+
.serviceflow-nodeTitle[data-v-91a913ff] {
|
|
741
761
|
width: 80px;
|
|
742
762
|
}
|
|
743
763
|
|
|
744
|
-
.
|
|
745
|
-
width:
|
|
746
|
-
height:
|
|
764
|
+
.aaa[data-v-8bd72b80] {
|
|
765
|
+
width: 300px;
|
|
766
|
+
height: 200px;
|
|
747
767
|
background: #ffffff;
|
|
748
768
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
749
769
|
border-radius: 2px 2px 2px 2px;
|
|
750
770
|
}
|
|
751
|
-
.content[data-v-
|
|
771
|
+
.content[data-v-8bd72b80] {
|
|
752
772
|
width: 28px;
|
|
753
773
|
height: 15px;
|
|
754
774
|
font-weight: 400;
|
|
@@ -758,10 +778,9 @@
|
|
|
758
778
|
text-align: left;
|
|
759
779
|
font-style: normal;
|
|
760
780
|
text-transform: none;
|
|
761
|
-
padding: 5px 0px 4px 10px;
|
|
762
|
-
box-sizing: content-box;
|
|
781
|
+
padding: 5px 0px 4px 10px;
|
|
763
782
|
}
|
|
764
|
-
.serviceflow-nodeView[data-v-
|
|
783
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
765
784
|
box-sizing: border-box;
|
|
766
785
|
margin: 10px 10px;
|
|
767
786
|
width: 180px;
|
|
@@ -770,7 +789,7 @@
|
|
|
770
789
|
border-radius: 2px 2px 2px 2px;
|
|
771
790
|
padding: 20px 10px;
|
|
772
791
|
}
|
|
773
|
-
.serviceflow-nodeTitle[data-v-
|
|
792
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
774
793
|
width: 90px;
|
|
775
794
|
height: 15px;
|
|
776
795
|
font-weight: 400;
|
|
@@ -786,7 +805,7 @@
|
|
|
786
805
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
787
806
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
788
807
|
}
|
|
789
|
-
.serviceflow-nodeContent[data-v-
|
|
808
|
+
.serviceflow-nodeContent[data-v-4d28d77b] {
|
|
790
809
|
/* width: 100%; */
|
|
791
810
|
height: 15px;
|
|
792
811
|
font-weight: 400;
|
|
@@ -802,16 +821,16 @@
|
|
|
802
821
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
803
822
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
804
823
|
}
|
|
805
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
824
|
+
.serviceflow-nodeContent-desc[data-v-4d28d77b] {
|
|
806
825
|
}
|
|
807
|
-
.el-divider--horizontal[data-v-
|
|
826
|
+
.el-divider--horizontal[data-v-4d28d77b] {
|
|
808
827
|
margin: 12px 0;
|
|
809
828
|
}
|
|
810
|
-
.serviceflow-nodeView[data-v-
|
|
829
|
+
.serviceflow-nodeView[data-v-4d28d77b] {
|
|
811
830
|
border: 1px solid #5a90f9;
|
|
812
831
|
background: #eef3fe;
|
|
813
832
|
}
|
|
814
|
-
.serviceflow-nodeTitle[data-v-
|
|
833
|
+
.serviceflow-nodeTitle[data-v-4d28d77b] {
|
|
815
834
|
width: 80px;
|
|
816
835
|
}
|
|
817
836
|
.serviceflow-nodeView[data-v-418f1558] {
|
|
@@ -868,7 +887,7 @@
|
|
|
868
887
|
}
|
|
869
888
|
.serviceflow-nodeContent[data-v-418f1558] {
|
|
870
889
|
}
|
|
871
|
-
.serviceflow-nodeView[data-v-
|
|
890
|
+
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
872
891
|
box-sizing: border-box;
|
|
873
892
|
margin: 10px 10px;
|
|
874
893
|
width: 180px;
|
|
@@ -877,7 +896,7 @@
|
|
|
877
896
|
border-radius: 2px 2px 2px 2px;
|
|
878
897
|
padding: 20px 10px;
|
|
879
898
|
}
|
|
880
|
-
.serviceflow-nodeTitle[data-v-
|
|
899
|
+
.serviceflow-nodeTitle[data-v-1ce8de44] {
|
|
881
900
|
width: 90px;
|
|
882
901
|
height: 15px;
|
|
883
902
|
font-weight: 400;
|
|
@@ -893,7 +912,7 @@
|
|
|
893
912
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
894
913
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
895
914
|
}
|
|
896
|
-
.serviceflow-nodeContent[data-v-
|
|
915
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
897
916
|
/* width: 100%; */
|
|
898
917
|
height: 15px;
|
|
899
918
|
font-weight: 400;
|
|
@@ -909,20 +928,20 @@
|
|
|
909
928
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
910
929
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
911
930
|
}
|
|
912
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
931
|
+
.serviceflow-nodeContent-desc[data-v-1ce8de44] {
|
|
913
932
|
}
|
|
914
|
-
.el-divider--horizontal[data-v-
|
|
933
|
+
.el-divider--horizontal[data-v-1ce8de44] {
|
|
915
934
|
margin: 12px 0;
|
|
916
935
|
}
|
|
917
|
-
.serviceflow-nodeView[data-v-
|
|
936
|
+
.serviceflow-nodeView[data-v-1ce8de44] {
|
|
918
937
|
border: 1px solid #5a90f9;
|
|
919
938
|
background: #eef3fe;
|
|
920
939
|
width: 180px;
|
|
921
940
|
min-height: 95px;
|
|
922
941
|
}
|
|
923
|
-
.serviceflow-nodeContent[data-v-
|
|
942
|
+
.serviceflow-nodeContent[data-v-1ce8de44] {
|
|
924
943
|
}
|
|
925
|
-
.serviceflow-nodeView[data-v-
|
|
944
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
926
945
|
box-sizing: border-box;
|
|
927
946
|
margin: 10px 10px;
|
|
928
947
|
width: 180px;
|
|
@@ -931,7 +950,7 @@
|
|
|
931
950
|
border-radius: 2px 2px 2px 2px;
|
|
932
951
|
padding: 20px 10px;
|
|
933
952
|
}
|
|
934
|
-
.serviceflow-nodeTitle[data-v-
|
|
953
|
+
.serviceflow-nodeTitle[data-v-3c23a172] {
|
|
935
954
|
width: 90px;
|
|
936
955
|
height: 15px;
|
|
937
956
|
font-weight: 400;
|
|
@@ -947,7 +966,7 @@
|
|
|
947
966
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
948
967
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
949
968
|
}
|
|
950
|
-
.serviceflow-nodeContent[data-v-
|
|
969
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
951
970
|
/* width: 100%; */
|
|
952
971
|
height: 15px;
|
|
953
972
|
font-weight: 400;
|
|
@@ -963,39 +982,20 @@
|
|
|
963
982
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
964
983
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
965
984
|
}
|
|
966
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
985
|
+
.serviceflow-nodeContent-desc[data-v-3c23a172] {
|
|
967
986
|
}
|
|
968
|
-
.el-divider--horizontal[data-v-
|
|
987
|
+
.el-divider--horizontal[data-v-3c23a172] {
|
|
969
988
|
margin: 12px 0;
|
|
970
989
|
}
|
|
971
|
-
.serviceflow-nodeView[data-v-
|
|
990
|
+
.serviceflow-nodeView[data-v-3c23a172] {
|
|
972
991
|
border: 1px solid #5a90f9;
|
|
973
|
-
background: #eef3fe;
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
width: 80px;
|
|
977
|
-
}
|
|
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;
|
|
992
|
+
background: #eef3fe;
|
|
993
|
+
width: 180px;
|
|
994
|
+
min-height: 95px;
|
|
985
995
|
}
|
|
986
|
-
.
|
|
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;
|
|
996
|
+
.serviceflow-nodeContent[data-v-3c23a172] {
|
|
997
997
|
}
|
|
998
|
-
.serviceflow-nodeView[data-v-
|
|
998
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
999
999
|
box-sizing: border-box;
|
|
1000
1000
|
margin: 10px 10px;
|
|
1001
1001
|
width: 180px;
|
|
@@ -1004,7 +1004,7 @@
|
|
|
1004
1004
|
border-radius: 2px 2px 2px 2px;
|
|
1005
1005
|
padding: 20px 10px;
|
|
1006
1006
|
}
|
|
1007
|
-
.serviceflow-nodeTitle[data-v-
|
|
1007
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
1008
1008
|
width: 90px;
|
|
1009
1009
|
height: 15px;
|
|
1010
1010
|
font-weight: 400;
|
|
@@ -1020,7 +1020,7 @@
|
|
|
1020
1020
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1021
1021
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1022
1022
|
}
|
|
1023
|
-
.serviceflow-nodeContent[data-v-
|
|
1023
|
+
.serviceflow-nodeContent[data-v-08d9d211] {
|
|
1024
1024
|
/* width: 100%; */
|
|
1025
1025
|
height: 15px;
|
|
1026
1026
|
font-weight: 400;
|
|
@@ -1036,19 +1036,19 @@
|
|
|
1036
1036
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1037
1037
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1038
1038
|
}
|
|
1039
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1039
|
+
.serviceflow-nodeContent-desc[data-v-08d9d211] {
|
|
1040
1040
|
}
|
|
1041
|
-
.el-divider--horizontal[data-v-
|
|
1041
|
+
.el-divider--horizontal[data-v-08d9d211] {
|
|
1042
1042
|
margin: 12px 0;
|
|
1043
1043
|
}
|
|
1044
|
-
.serviceflow-nodeView[data-v-
|
|
1044
|
+
.serviceflow-nodeView[data-v-08d9d211] {
|
|
1045
1045
|
border: 1px solid #5a90f9;
|
|
1046
1046
|
background: #eef3fe;
|
|
1047
1047
|
}
|
|
1048
|
-
.serviceflow-nodeTitle[data-v-
|
|
1048
|
+
.serviceflow-nodeTitle[data-v-08d9d211] {
|
|
1049
1049
|
width: 80px;
|
|
1050
1050
|
}
|
|
1051
|
-
.serviceflow-nodeView[data-v-
|
|
1051
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
1052
1052
|
box-sizing: border-box;
|
|
1053
1053
|
margin: 10px 10px;
|
|
1054
1054
|
width: 180px;
|
|
@@ -1057,7 +1057,7 @@
|
|
|
1057
1057
|
border-radius: 2px 2px 2px 2px;
|
|
1058
1058
|
padding: 20px 10px;
|
|
1059
1059
|
}
|
|
1060
|
-
.serviceflow-nodeTitle[data-v-
|
|
1060
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
1061
1061
|
width: 90px;
|
|
1062
1062
|
height: 15px;
|
|
1063
1063
|
font-weight: 400;
|
|
@@ -1073,7 +1073,7 @@
|
|
|
1073
1073
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1074
1074
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1075
1075
|
}
|
|
1076
|
-
.serviceflow-nodeContent[data-v-
|
|
1076
|
+
.serviceflow-nodeContent[data-v-42ce3f17] {
|
|
1077
1077
|
/* width: 100%; */
|
|
1078
1078
|
height: 15px;
|
|
1079
1079
|
font-weight: 400;
|
|
@@ -1089,19 +1089,19 @@
|
|
|
1089
1089
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1090
1090
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1091
1091
|
}
|
|
1092
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1092
|
+
.serviceflow-nodeContent-desc[data-v-42ce3f17] {
|
|
1093
1093
|
}
|
|
1094
|
-
.el-divider--horizontal[data-v-
|
|
1094
|
+
.el-divider--horizontal[data-v-42ce3f17] {
|
|
1095
1095
|
margin: 12px 0;
|
|
1096
1096
|
}
|
|
1097
|
-
.serviceflow-nodeView[data-v-
|
|
1097
|
+
.serviceflow-nodeView[data-v-42ce3f17] {
|
|
1098
1098
|
border: 1px solid #5a90f9;
|
|
1099
1099
|
background: #eef3fe;
|
|
1100
1100
|
}
|
|
1101
|
-
.serviceflow-nodeTitle[data-v-
|
|
1101
|
+
.serviceflow-nodeTitle[data-v-42ce3f17] {
|
|
1102
1102
|
width: 80px;
|
|
1103
1103
|
}
|
|
1104
|
-
.serviceflow-nodeView[data-v-
|
|
1104
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
1105
1105
|
box-sizing: border-box;
|
|
1106
1106
|
margin: 10px 10px;
|
|
1107
1107
|
width: 180px;
|
|
@@ -1110,7 +1110,7 @@
|
|
|
1110
1110
|
border-radius: 2px 2px 2px 2px;
|
|
1111
1111
|
padding: 20px 10px;
|
|
1112
1112
|
}
|
|
1113
|
-
.serviceflow-nodeTitle[data-v-
|
|
1113
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
1114
1114
|
width: 90px;
|
|
1115
1115
|
height: 15px;
|
|
1116
1116
|
font-weight: 400;
|
|
@@ -1126,7 +1126,7 @@
|
|
|
1126
1126
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1127
1127
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1128
1128
|
}
|
|
1129
|
-
.serviceflow-nodeContent[data-v-
|
|
1129
|
+
.serviceflow-nodeContent[data-v-1519c141] {
|
|
1130
1130
|
/* width: 100%; */
|
|
1131
1131
|
height: 15px;
|
|
1132
1132
|
font-weight: 400;
|
|
@@ -1142,19 +1142,19 @@
|
|
|
1142
1142
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1143
1143
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1144
1144
|
}
|
|
1145
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1145
|
+
.serviceflow-nodeContent-desc[data-v-1519c141] {
|
|
1146
1146
|
}
|
|
1147
|
-
.el-divider--horizontal[data-v-
|
|
1147
|
+
.el-divider--horizontal[data-v-1519c141] {
|
|
1148
1148
|
margin: 12px 0;
|
|
1149
1149
|
}
|
|
1150
|
-
.serviceflow-nodeView[data-v-
|
|
1150
|
+
.serviceflow-nodeView[data-v-1519c141] {
|
|
1151
1151
|
border: 1px solid #5a90f9;
|
|
1152
1152
|
background: #eef3fe;
|
|
1153
1153
|
}
|
|
1154
|
-
.serviceflow-nodeTitle[data-v-
|
|
1154
|
+
.serviceflow-nodeTitle[data-v-1519c141] {
|
|
1155
1155
|
width: 80px;
|
|
1156
1156
|
}
|
|
1157
|
-
.serviceflow-nodeView[data-v-
|
|
1157
|
+
.serviceflow-nodeView[data-v-96d149c1] {
|
|
1158
1158
|
box-sizing: border-box;
|
|
1159
1159
|
margin: 10px 10px;
|
|
1160
1160
|
width: 180px;
|
|
@@ -1163,7 +1163,7 @@
|
|
|
1163
1163
|
border-radius: 2px 2px 2px 2px;
|
|
1164
1164
|
padding: 20px 10px;
|
|
1165
1165
|
}
|
|
1166
|
-
.serviceflow-nodeTitle[data-v-
|
|
1166
|
+
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
1167
1167
|
width: 90px;
|
|
1168
1168
|
height: 15px;
|
|
1169
1169
|
font-weight: 400;
|
|
@@ -1179,7 +1179,7 @@
|
|
|
1179
1179
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1180
1180
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1181
1181
|
}
|
|
1182
|
-
.serviceflow-nodeContent[data-v-
|
|
1182
|
+
.serviceflow-nodeContent[data-v-96d149c1] {
|
|
1183
1183
|
/* width: 100%; */
|
|
1184
1184
|
height: 15px;
|
|
1185
1185
|
font-weight: 400;
|
|
@@ -1195,19 +1195,19 @@
|
|
|
1195
1195
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1196
1196
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1197
1197
|
}
|
|
1198
|
-
.serviceflow-nodeContent-desc[data-v-
|
|
1198
|
+
.serviceflow-nodeContent-desc[data-v-96d149c1] {
|
|
1199
1199
|
}
|
|
1200
|
-
.el-divider--horizontal[data-v-
|
|
1200
|
+
.el-divider--horizontal[data-v-96d149c1] {
|
|
1201
1201
|
margin: 12px 0;
|
|
1202
1202
|
}
|
|
1203
|
-
.serviceflow-nodeView[data-v-
|
|
1203
|
+
.serviceflow-nodeView[data-v-96d149c1] {
|
|
1204
1204
|
border: 1px solid #5a90f9;
|
|
1205
1205
|
background: #eef3fe;
|
|
1206
1206
|
}
|
|
1207
|
-
.serviceflow-nodeTitle[data-v-
|
|
1207
|
+
.serviceflow-nodeTitle[data-v-96d149c1] {
|
|
1208
1208
|
width: 80px;
|
|
1209
1209
|
}
|
|
1210
|
-
.serviceflow-nodeView[data-v-
|
|
1210
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
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-b04d3f8b] {
|
|
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-b04d3f8b] {
|
|
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-b04d3f8b] {
|
|
1252
1252
|
}
|
|
1253
|
-
.el-divider--horizontal[data-v-
|
|
1253
|
+
.el-divider--horizontal[data-v-b04d3f8b] {
|
|
1254
1254
|
margin: 12px 0;
|
|
1255
1255
|
}
|
|
1256
|
-
.serviceflow-nodeView[data-v-
|
|
1256
|
+
.serviceflow-nodeView[data-v-b04d3f8b] {
|
|
1257
1257
|
border: 1px solid #5a90f9;
|
|
1258
1258
|
background: #eef3fe;
|
|
1259
1259
|
}
|
|
1260
|
-
.serviceflow-nodeTitle[data-v-
|
|
1260
|
+
.serviceflow-nodeTitle[data-v-b04d3f8b] {
|
|
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,6 +1271,10 @@
|
|
|
1275
1271
|
margin-left: 10px;
|
|
1276
1272
|
}
|
|
1277
1273
|
|
|
1274
|
+
.el-radio[data-v-1bbd6187] {
|
|
1275
|
+
margin-right: 10px;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
1278
|
.el-radio[data-v-1ee0eb33] {
|
|
1279
1279
|
margin-right: 10px;
|
|
1280
1280
|
}
|
|
@@ -1292,17 +1292,17 @@
|
|
|
1292
1292
|
margin-left: 10px;
|
|
1293
1293
|
}
|
|
1294
1294
|
|
|
1295
|
-
[data-v-
|
|
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.56",
|
|
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.89",
|
|
65
65
|
"codemirror": "^6.0.1",
|
|
66
66
|
"nprogress": "^0.2.0",
|
|
67
67
|
"pinia": "^2.1.7",
|