service-flow-designer 2.1.25 → 2.1.29

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.
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./datatable-select.vue2.js";
2
2
  import "./datatable-select.vue3.js";
3
3
  import _export_sfc from "../../../_virtual/_plugin-vue_export-helper.js";
4
- const DatatableSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f20126f5"]]);
4
+ const DatatableSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b53b2895"]]);
5
5
  export {
6
6
  DatatableSelect as default
7
7
  };
@@ -78,15 +78,19 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
78
78
  }
79
79
  }
80
80
  systemOptions.value = res;
81
- loadDataTableList(null);
81
+ loadDataTableList(selectedSystemCode.value);
82
82
  });
83
83
  }
84
84
  function selectedSystemChange(value) {
85
85
  tableListData.value = [];
86
86
  pagination.value.currentPage = 1;
87
87
  pagination.value.total = 0;
88
+ selectedSystemCode.value = value;
88
89
  loadDataTableList(value);
89
90
  }
91
+ function paginationChange() {
92
+ loadDataTableList(selectedSystemCode.value);
93
+ }
90
94
  function loadDataTableList(systemCode) {
91
95
  selectRow.value = { name: "" };
92
96
  const param = {
@@ -293,8 +297,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
293
297
  background: "",
294
298
  layout: "total, sizes, prev, pager, next, jumper",
295
299
  total: pagination.value.total,
296
- onSizeChange: loadDataTableList,
297
- onCurrentChange: loadDataTableList
300
+ onSizeChange: paginationChange,
301
+ onCurrentChange: paginationChange
298
302
  }, null, 8, ["current-page", "page-size", "total"])
299
303
  ]),
300
304
  _: 1
@@ -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-808a13e1"]]);
4
+ const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ac2ec342"]]);
5
5
  export {
6
6
  config as default
7
7
  };
@@ -28,7 +28,7 @@ import _sfc_main$4 from "./filter-conditions.vue.js";
28
28
  import _sfc_main$5 from "./sort-conditions.vue.js";
29
29
  import _sfc_main$1 from "../../../common/components/node-base-config.vue.js";
30
30
  import "element-plus/es/components/message/style/css";
31
- const _withScopeId = (n) => (pushScopeId("data-v-808a13e1"), n = n(), popScopeId(), n);
31
+ const _withScopeId = (n) => (pushScopeId("data-v-ac2ec342"), n = n(), popScopeId(), n);
32
32
  const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("br", null, null, -1));
33
33
  const _hoisted_2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("br", null, null, -1));
34
34
  const _hoisted_3 = { style: { "display": "flex" } };
@@ -55,6 +55,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
55
55
  }
56
56
  },
57
57
  setup(__props, { expose: __expose }) {
58
+ var _a;
58
59
  const serviceFlowStoreUtil = useServiceFlowStore();
59
60
  const props = __props;
60
61
  if (!props.properties.result) {
@@ -62,6 +63,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
62
63
  }
63
64
  const showSelectTable = ref(false);
64
65
  const systemCode = ref(serviceFlowStoreUtil.pageContext.systemCode);
66
+ if ((_a = props.properties) == null ? void 0 : _a.dataTableSystemCode) {
67
+ systemCode.value = props.properties.dataTableSystemCode;
68
+ }
65
69
  const systemVersion = ref(serviceFlowStoreUtil.pageContext.systemVersion);
66
70
  const dataTableColumns = ref([]);
67
71
  const groupColumns = ref([]);
@@ -99,6 +103,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
99
103
  props.properties.dataTable = result.dataTable.name;
100
104
  props.properties.dataTableSystemCode = result.system.code;
101
105
  props.properties.dataTableSystemVersion = result.system.publishVersion;
106
+ systemCode.value = props.properties.dataTableSystemCode;
102
107
  updateTableColumns();
103
108
  };
104
109
  const statisticsColumnChange = (value) => {
@@ -1,12 +1,14 @@
1
- import { ElInput, ElFormItem, ElAlert, ElForm } from "element-plus/es";
1
+ import { ElInput, ElText, ElFormItem, ElAlert, ElForm } from "element-plus/es";
2
2
  import "element-plus/es/components/base/style/css";
3
3
  import "element-plus/es/components/form/style/css";
4
4
  import "element-plus/es/components/alert/style/css";
5
5
  import "element-plus/es/components/form-item/style/css";
6
+ import "element-plus/es/components/text/style/css";
6
7
  import "element-plus/es/components/input/style/css";
7
- import { defineComponent, openBlock, createBlock, withCtx, createVNode, unref } from "vue";
8
+ import { defineComponent, openBlock, createBlock, withCtx, createVNode, createTextVNode, unref } from "vue";
8
9
  import _sfc_main$1 from "../../../common/components/node-base-config.vue.js";
9
10
  import ValueSetInput from "../../../common/components/value-set-input/value-set-input.vue.js";
11
+ import "@element-plus/icons-vue";
10
12
  const _sfc_main = /* @__PURE__ */ defineComponent({
11
13
  __name: "config",
12
14
  props: {
@@ -21,6 +23,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
21
23
  __expose({});
22
24
  return (_ctx, _cache) => {
23
25
  const _component_el_input = ElInput;
26
+ const _component_el_text = ElText;
24
27
  const _component_el_form_item = ElFormItem;
25
28
  const _component_el_alert = ElAlert;
26
29
  const _component_el_form = ElForm;
@@ -37,7 +40,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
37
40
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.properties.beanName = $event),
38
41
  placeholder: "",
39
42
  style: { "width": "85%" }
40
- }, null, 8, ["modelValue"])
43
+ }, null, 8, ["modelValue"]),
44
+ createVNode(_component_el_text, {
45
+ style: { "margin-top": "10px", "margin-bottom": "10px", "display": "block" },
46
+ type: "success"
47
+ }, {
48
+ default: withCtx(() => [
49
+ createTextVNode(" 说明:自定义bean需实现cn.ambitionq.serivceflow.core.ServiceNodeHandler接口重写execute方法 ")
50
+ ]),
51
+ _: 1
52
+ })
41
53
  ]),
42
54
  _: 1
43
55
  }),
@@ -18,6 +18,7 @@ import _sfc_main$2 from "../../common/components/json-view/json-view.vue.js";
18
18
  import { vscodeDark } from "@uiw/codemirror-themes-all";
19
19
  import _sfc_main$1 from "./request-params.vue.js";
20
20
  import { getSystemBackendUrl } from "agilebuilder-ui/src/utils/common-util";
21
+ import { getRuntimeJson } from "../flow-util.js";
21
22
  const _hoisted_1 = { class: "dialog-footer" };
22
23
  const _sfc_main = /* @__PURE__ */ defineComponent({
23
24
  __name: "service-test",
@@ -151,6 +152,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
151
152
  var _a;
152
153
  const data = JSON.parse(JSON.stringify(props.cloneService));
153
154
  data.flow = (_a = props.lf) == null ? void 0 : _a.getGraphData();
155
+ data.runtimeJson = JSON.stringify(getRuntimeJson(data));
154
156
  data.variables = JSON.stringify(data.variables);
155
157
  data.log = JSON.stringify(data.log);
156
158
  data.flow = JSON.stringify(data.flow);
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./view-index.vue2.js";
2
2
  import "./view-index.vue3.js";
3
3
  import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
4
- const ServiceFlowView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-0ca3e4c5"]]);
4
+ const ServiceFlowView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-5e9e3ee6"]]);
5
5
  export {
6
6
  ServiceFlowView as default
7
7
  };
@@ -18,7 +18,7 @@ import "../service-components/index.js";
18
18
  import { findServcieByCode, isDeepEqual } from "../common/util/node-util.js";
19
19
  import { useServiceFlowStore } from "../../stores/page-store.js";
20
20
  import { ElMessageBox, ElMessage } from "element-plus";
21
- const _withScopeId = (n) => (pushScopeId("data-v-0ca3e4c5"), n = n(), popScopeId(), n);
21
+ const _withScopeId = (n) => (pushScopeId("data-v-5e9e3ee6"), n = n(), popScopeId(), n);
22
22
  const _hoisted_1 = {
23
23
  class: "serviceflow-design-content",
24
24
  ref: "ambServiceFlowContent"
@@ -226,8 +226,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
226
226
  if (!lf.value) {
227
227
  return;
228
228
  }
229
- const gdata = lf.value.getGraphData();
230
- cloneService.value.flow = gdata;
229
+ cloneService.value.flow = lf.value.getGraphData();
231
230
  if (sourceService.value) {
232
231
  cloneService.value.runtimeJson = JSON.stringify(getRuntimeJson(cloneService.value));
233
232
  const saveService2 = JSON.parse(JSON.stringify(cloneService.value));
package/dist/es/style.css CHANGED
@@ -63,7 +63,7 @@
63
63
  .amb-design-assembly-list[data-v-59e0837d] {
64
64
  padding-top: 80px;
65
65
  }
66
- .serviceflow-design-content[data-v-0ca3e4c5] {
66
+ .serviceflow-design-content[data-v-5e9e3ee6] {
67
67
  overflow: auto;
68
68
  display: block;
69
69
  flex: none;
@@ -71,10 +71,10 @@
71
71
  width: 100%;
72
72
  height: 100%;
73
73
  }
74
- .serviceflow-design-content[data-v-0ca3e4c5]::-webkit-scrollbar {
74
+ .serviceflow-design-content[data-v-5e9e3ee6]::-webkit-scrollbar {
75
75
  width: 1px;
76
76
  }
77
- .serviceflow-design-tool[data-v-0ca3e4c5] {
77
+ .serviceflow-design-tool[data-v-5e9e3ee6] {
78
78
  position: -webkit-sticky; /**Safari */
79
79
  position: sticky;
80
80
  width: 100%;
@@ -88,7 +88,7 @@
88
88
  z-index: 0;
89
89
  box-sizing: content-box;
90
90
  }
91
- .serviceflow-page-type[data-v-0ca3e4c5] {
91
+ .serviceflow-page-type[data-v-5e9e3ee6] {
92
92
  padding-top: 11px;
93
93
  padding-left: 6px;
94
94
  padding-right: 6px;
@@ -96,14 +96,14 @@
96
96
  border-radius: 4px 4px 4px 4px;
97
97
  cursor: pointer;
98
98
  }
99
- .serviceflow-page-type[data-v-0ca3e4c5]:hover {
99
+ .serviceflow-page-type[data-v-5e9e3ee6]:hover {
100
100
  background: rgba(11, 45, 101, 0.105);
101
101
  }
102
- .serviceflow-page-type.selected[data-v-0ca3e4c5] {
102
+ .serviceflow-page-type.selected[data-v-5e9e3ee6] {
103
103
  background: #5893ef;
104
104
  color: #ffffff;
105
105
  }
106
- .serviceflow-page-type > label[data-v-0ca3e4c5] {
106
+ .serviceflow-page-type > label[data-v-5e9e3ee6] {
107
107
  font-size: 14px;
108
108
  padding-left: 6px;
109
109
  padding-right: 6px;
@@ -112,11 +112,11 @@
112
112
  position: relative;
113
113
  cursor: pointer;
114
114
  }
115
- .serviceflow-design-tool-split[data-v-0ca3e4c5] {
115
+ .serviceflow-design-tool-split[data-v-5e9e3ee6] {
116
116
  height: 25px;
117
117
  margin-top: -12px;
118
118
  }
119
- .serviceflow-design-board[data-v-0ca3e4c5] {
119
+ .serviceflow-design-board[data-v-5e9e3ee6] {
120
120
  margin: 0 auto;
121
121
  margin-top: 28px;
122
122
  overflow-y: auto;
@@ -126,24 +126,24 @@
126
126
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
127
127
  padding-bottom: 20px;
128
128
  }
129
- .container[data-v-0ca3e4c5] {
129
+ .container[data-v-5e9e3ee6] {
130
130
  height: 100%;
131
131
  width: 100%;
132
132
  }
133
- .amb-item-ghost[data-v-0ca3e4c5] {
133
+ .amb-item-ghost[data-v-5e9e3ee6] {
134
134
  background-color: #5893ef;
135
135
  height: 5px;
136
136
  line-height: 5px;
137
137
  overflow: hidden;
138
138
  }
139
139
  /* 将你的自定义样式添加到这里 */
140
- .draggable-placeholder[data-v-0ca3e4c5] {
140
+ .draggable-placeholder[data-v-5e9e3ee6] {
141
141
  background-color: red;
142
142
  border: 1px dashed #ddd;
143
143
  margin: 5px;
144
144
  padding: 10px;
145
145
  }
146
- #LF-view[data-v-0ca3e4c5] {
146
+ #LF-view[data-v-5e9e3ee6] {
147
147
  width: calc(100% - 100px);
148
148
  height: 80%;
149
149
  outline: none;
@@ -155,10 +155,10 @@
155
155
  /**
156
156
  解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
157
157
  */
158
- [data-v-0ca3e4c5] .el-overlay {
158
+ [data-v-5e9e3ee6] .el-overlay {
159
159
  position: static !important;
160
160
  }
161
- .triangle[data-v-0ca3e4c5] {
161
+ .triangle[data-v-5e9e3ee6] {
162
162
  display: inline-block;
163
163
  width: 0;
164
164
  height: 0;
@@ -167,10 +167,6 @@
167
167
  border-color: transparent transparent var(--el-skeleton-color) transparent;
168
168
  }
169
169
 
170
- .el-alert + .el-form-item[data-v-a158f309] {
171
- margin-top: 10px;
172
- }
173
-
174
170
  .editorTool[data-v-d55ab098] {
175
171
  margin-left: auto;
176
172
  }
@@ -184,17 +180,14 @@
184
180
  align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
185
181
  }
186
182
 
187
- [data-v-65e38bfb] .el-radio {
188
- margin: 0;
189
- }
190
- .el-radio + .el-radio[data-v-65e38bfb] {
191
- margin-left: 10px;
183
+ .el-alert + .el-form-item[data-v-a158f309] {
184
+ margin-top: 10px;
192
185
  }
193
186
 
194
- [data-v-808a13e1] .el-radio {
187
+ [data-v-65e38bfb] .el-radio {
195
188
  margin: 0;
196
189
  }
197
- .el-radio + .el-radio[data-v-808a13e1] {
190
+ .el-radio + .el-radio[data-v-65e38bfb] {
198
191
  margin-left: 10px;
199
192
  }
200
193
 
@@ -211,6 +204,13 @@
211
204
  align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
212
205
  }
213
206
 
207
+ [data-v-ac2ec342] .el-radio {
208
+ margin: 0;
209
+ }
210
+ .el-radio + .el-radio[data-v-ac2ec342] {
211
+ margin-left: 10px;
212
+ }
213
+
214
214
  .el-alert + .el-form-item[data-v-32875028] {
215
215
  margin-top: 10px;
216
216
  }
@@ -218,23 +218,23 @@
218
218
  margin: 10px 0;
219
219
  }
220
220
 
221
- .el-alert + .el-table[data-v-e27c4c1e] {
221
+ .el-alert + .el-table[data-v-d978e7dc] {
222
222
  margin-top: 10px;
223
223
  }
224
- .el-table + .el-alert[data-v-e27c4c1e] {
224
+ .el-table + .el-alert[data-v-d978e7dc] {
225
225
  margin: 10px 0;
226
226
  }
227
- .el-alert + .el-form-item[data-v-e27c4c1e] {
227
+ .el-alert + .el-form-item[data-v-d978e7dc] {
228
228
  margin-top: 10px;
229
229
  }
230
230
 
231
- .el-alert + .el-table[data-v-d978e7dc] {
231
+ .el-alert + .el-table[data-v-e27c4c1e] {
232
232
  margin-top: 10px;
233
233
  }
234
- .el-table + .el-alert[data-v-d978e7dc] {
234
+ .el-table + .el-alert[data-v-e27c4c1e] {
235
235
  margin: 10px 0;
236
236
  }
237
- .el-alert + .el-form-item[data-v-d978e7dc] {
237
+ .el-alert + .el-form-item[data-v-e27c4c1e] {
238
238
  margin-top: 10px;
239
239
  }
240
240
 
@@ -324,57 +324,6 @@
324
324
  .amb-assembly-item-drag[data-v-8bad091d] {
325
325
  opacity: 1 !important;
326
326
  }
327
-
328
- [data-v-286d914e] .el-table__row {
329
- cursor: pointer;
330
- }
331
- /** 右键菜单样式 */
332
- .context-menu[data-v-286d914e] {
333
- position: absolute;
334
- background: #fff;
335
- z-index: 999;
336
- margin: 5;
337
- padding: 8px 8px;
338
- box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
339
- border: 1px solid #bbbbbb;
340
- border-radius: 10px;
341
- font-size: 14px;
342
- }
343
- .context-menu li[data-v-286d914e] {
344
- list-style-type: none;
345
- min-width: 75px;
346
- line-height: 28px;
347
- text-align: left;
348
- border-radius: 5px;
349
- padding-left: 5px;
350
- cursor: pointer;
351
- }
352
- .context-menu li[data-v-286d914e]:hover {
353
- background: #0165e1;
354
- color: #fff;
355
- }
356
- /** 右键菜单样式 */
357
- .custom-tree-node[data-v-286d914e] {
358
- font-size: 14px;
359
- padding-right: 8px;
360
- display: flex; /* 使用Flex布局 */
361
- align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
362
- }
363
-
364
- .el-drawer__header {
365
- margin-bottom: 0 !important;
366
- }
367
- /**
368
- 解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
369
- */
370
- [data-v-c51cce99] .el-overlay {
371
- position: static;
372
- }
373
-
374
- .el-dialog__wrapper[data-v-d41cb0ad] {
375
- overflow: hidden !important;
376
- padding-right: 0 !important;
377
- }
378
327
  .serviceflow-control-item[data-v-a2bd7452] {
379
328
  top: -5px;
380
329
  position: relative;
@@ -506,7 +455,58 @@
506
455
  outline: none;
507
456
  margin-left: 50px;
508
457
  }
509
- .serviceflow-nodeView[data-v-9770119b] {
458
+
459
+ .el-dialog__wrapper[data-v-d41cb0ad] {
460
+ overflow: hidden !important;
461
+ padding-right: 0 !important;
462
+ }
463
+
464
+ [data-v-286d914e] .el-table__row {
465
+ cursor: pointer;
466
+ }
467
+ /** 右键菜单样式 */
468
+ .context-menu[data-v-286d914e] {
469
+ position: absolute;
470
+ background: #fff;
471
+ z-index: 999;
472
+ margin: 5;
473
+ padding: 8px 8px;
474
+ box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
475
+ border: 1px solid #bbbbbb;
476
+ border-radius: 10px;
477
+ font-size: 14px;
478
+ }
479
+ .context-menu li[data-v-286d914e] {
480
+ list-style-type: none;
481
+ min-width: 75px;
482
+ line-height: 28px;
483
+ text-align: left;
484
+ border-radius: 5px;
485
+ padding-left: 5px;
486
+ cursor: pointer;
487
+ }
488
+ .context-menu li[data-v-286d914e]:hover {
489
+ background: #0165e1;
490
+ color: #fff;
491
+ }
492
+ /** 右键菜单样式 */
493
+ .custom-tree-node[data-v-286d914e] {
494
+ font-size: 14px;
495
+ padding-right: 8px;
496
+ display: flex; /* 使用Flex布局 */
497
+ align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
498
+ }
499
+
500
+ .el-drawer__header {
501
+ margin-bottom: 0 !important;
502
+ }
503
+ /**
504
+ 解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
505
+ */
506
+ [data-v-c51cce99] .el-overlay {
507
+ position: static;
508
+ }
509
+ .serviceflow-nodeView[data-v-96d149c1] {
510
510
  box-sizing: border-box;
511
511
  margin: 10px 10px;
512
512
  width: 180px;
@@ -515,7 +515,7 @@
515
515
  border-radius: 2px 2px 2px 2px;
516
516
  padding: 20px 10px;
517
517
  }
518
- .serviceflow-nodeTitle[data-v-9770119b] {
518
+ .serviceflow-nodeTitle[data-v-96d149c1] {
519
519
  width: 90px;
520
520
  height: 15px;
521
521
  font-weight: 400;
@@ -531,7 +531,7 @@
531
531
  overflow: hidden; /* 隐藏超出div宽度的文本 */
532
532
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
533
533
  }
534
- .serviceflow-nodeContent[data-v-9770119b] {
534
+ .serviceflow-nodeContent[data-v-96d149c1] {
535
535
  /* width: 100%; */
536
536
  height: 15px;
537
537
  font-weight: 400;
@@ -547,19 +547,19 @@
547
547
  overflow: hidden; /* 隐藏超出div宽度的文本 */
548
548
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
549
549
  }
550
- .serviceflow-nodeContent-desc[data-v-9770119b] {
550
+ .serviceflow-nodeContent-desc[data-v-96d149c1] {
551
551
  }
552
- .el-divider--horizontal[data-v-9770119b] {
552
+ .el-divider--horizontal[data-v-96d149c1] {
553
553
  margin: 12px 0;
554
554
  }
555
- .serviceflow-nodeView[data-v-9770119b] {
555
+ .serviceflow-nodeView[data-v-96d149c1] {
556
556
  border: 1px solid #5a90f9;
557
557
  background: #eef3fe;
558
558
  }
559
- .serviceflow-nodeTitle[data-v-9770119b] {
559
+ .serviceflow-nodeTitle[data-v-96d149c1] {
560
560
  width: 80px;
561
561
  }
562
- .serviceflow-nodeView[data-v-23f1c97b] {
562
+ .serviceflow-nodeView[data-v-1ce8de44] {
563
563
  box-sizing: border-box;
564
564
  margin: 10px 10px;
565
565
  width: 180px;
@@ -568,7 +568,7 @@
568
568
  border-radius: 2px 2px 2px 2px;
569
569
  padding: 20px 10px;
570
570
  }
571
- .serviceflow-nodeTitle[data-v-23f1c97b] {
571
+ .serviceflow-nodeTitle[data-v-1ce8de44] {
572
572
  width: 90px;
573
573
  height: 15px;
574
574
  font-weight: 400;
@@ -584,7 +584,7 @@
584
584
  overflow: hidden; /* 隐藏超出div宽度的文本 */
585
585
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
586
586
  }
587
- .serviceflow-nodeContent[data-v-23f1c97b] {
587
+ .serviceflow-nodeContent[data-v-1ce8de44] {
588
588
  /* width: 100%; */
589
589
  height: 15px;
590
590
  font-weight: 400;
@@ -600,40 +600,20 @@
600
600
  overflow: hidden; /* 隐藏超出div宽度的文本 */
601
601
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
602
602
  }
603
- .serviceflow-nodeContent-desc[data-v-23f1c97b] {
603
+ .serviceflow-nodeContent-desc[data-v-1ce8de44] {
604
604
  }
605
- .el-divider--horizontal[data-v-23f1c97b] {
605
+ .el-divider--horizontal[data-v-1ce8de44] {
606
606
  margin: 12px 0;
607
607
  }
608
- .serviceflow-nodeView[data-v-23f1c97b] {
608
+ .serviceflow-nodeView[data-v-1ce8de44] {
609
609
  border: 1px solid #5a90f9;
610
- background: #eef3fe;
611
- }
612
- .serviceflow-nodeTitle[data-v-23f1c97b] {
613
- width: 80px;
614
- }
615
-
616
- .node-content[data-v-669b618f] {
617
- width: 120px;
618
- height: 44px;
619
- background: #ffffff;
620
- box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
621
- border-radius: 2px 2px 2px 2px;
610
+ background: #eef3fe;
611
+ width: 180px;
612
+ min-height: 95px;
622
613
  }
623
- .content[data-v-669b618f] {
624
- width: 28px;
625
- height: 15px;
626
- font-weight: 400;
627
- font-size: 14px;
628
- color: #333333;
629
- line-height: 14px;
630
- text-align: left;
631
- font-style: normal;
632
- text-transform: none;
633
- padding: 5px 0px 4px 10px;
634
- box-sizing: content-box;
614
+ .serviceflow-nodeContent[data-v-1ce8de44] {
635
615
  }
636
- .serviceflow-nodeView[data-v-96d149c1] {
616
+ .serviceflow-nodeView[data-v-4d28d77b] {
637
617
  box-sizing: border-box;
638
618
  margin: 10px 10px;
639
619
  width: 180px;
@@ -642,7 +622,7 @@
642
622
  border-radius: 2px 2px 2px 2px;
643
623
  padding: 20px 10px;
644
624
  }
645
- .serviceflow-nodeTitle[data-v-96d149c1] {
625
+ .serviceflow-nodeTitle[data-v-4d28d77b] {
646
626
  width: 90px;
647
627
  height: 15px;
648
628
  font-weight: 400;
@@ -658,7 +638,7 @@
658
638
  overflow: hidden; /* 隐藏超出div宽度的文本 */
659
639
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
660
640
  }
661
- .serviceflow-nodeContent[data-v-96d149c1] {
641
+ .serviceflow-nodeContent[data-v-4d28d77b] {
662
642
  /* width: 100%; */
663
643
  height: 15px;
664
644
  font-weight: 400;
@@ -674,19 +654,19 @@
674
654
  overflow: hidden; /* 隐藏超出div宽度的文本 */
675
655
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
676
656
  }
677
- .serviceflow-nodeContent-desc[data-v-96d149c1] {
657
+ .serviceflow-nodeContent-desc[data-v-4d28d77b] {
678
658
  }
679
- .el-divider--horizontal[data-v-96d149c1] {
659
+ .el-divider--horizontal[data-v-4d28d77b] {
680
660
  margin: 12px 0;
681
661
  }
682
- .serviceflow-nodeView[data-v-96d149c1] {
662
+ .serviceflow-nodeView[data-v-4d28d77b] {
683
663
  border: 1px solid #5a90f9;
684
664
  background: #eef3fe;
685
665
  }
686
- .serviceflow-nodeTitle[data-v-96d149c1] {
666
+ .serviceflow-nodeTitle[data-v-4d28d77b] {
687
667
  width: 80px;
688
668
  }
689
- .serviceflow-nodeView[data-v-418f1558] {
669
+ .serviceflow-nodeView[data-v-9770119b] {
690
670
  box-sizing: border-box;
691
671
  margin: 10px 10px;
692
672
  width: 180px;
@@ -695,7 +675,7 @@
695
675
  border-radius: 2px 2px 2px 2px;
696
676
  padding: 20px 10px;
697
677
  }
698
- .serviceflow-nodeTitle[data-v-418f1558] {
678
+ .serviceflow-nodeTitle[data-v-9770119b] {
699
679
  width: 90px;
700
680
  height: 15px;
701
681
  font-weight: 400;
@@ -711,7 +691,7 @@
711
691
  overflow: hidden; /* 隐藏超出div宽度的文本 */
712
692
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
713
693
  }
714
- .serviceflow-nodeContent[data-v-418f1558] {
694
+ .serviceflow-nodeContent[data-v-9770119b] {
715
695
  /* width: 100%; */
716
696
  height: 15px;
717
697
  font-weight: 400;
@@ -727,20 +707,60 @@
727
707
  overflow: hidden; /* 隐藏超出div宽度的文本 */
728
708
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
729
709
  }
730
- .serviceflow-nodeContent-desc[data-v-418f1558] {
710
+ .serviceflow-nodeContent-desc[data-v-9770119b] {
731
711
  }
732
- .el-divider--horizontal[data-v-418f1558] {
712
+ .el-divider--horizontal[data-v-9770119b] {
733
713
  margin: 12px 0;
734
714
  }
735
- .serviceflow-nodeView[data-v-418f1558] {
715
+ .serviceflow-nodeView[data-v-9770119b] {
736
716
  border: 1px solid #5a90f9;
737
- background: #eef3fe;
738
- width: 180px;
739
- min-height: 95px;
717
+ background: #eef3fe;
740
718
  }
741
- .serviceflow-nodeContent[data-v-418f1558] {
719
+ .serviceflow-nodeTitle[data-v-9770119b] {
720
+ width: 80px;
742
721
  }
743
- .serviceflow-nodeView[data-v-4d28d77b] {
722
+
723
+ .aaa[data-v-8bd72b80] {
724
+ width: 300px;
725
+ height: 200px;
726
+ background: #ffffff;
727
+ box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
728
+ border-radius: 2px 2px 2px 2px;
729
+ }
730
+ .content[data-v-8bd72b80] {
731
+ width: 28px;
732
+ height: 15px;
733
+ font-weight: 400;
734
+ font-size: 14px;
735
+ color: #333333;
736
+ line-height: 14px;
737
+ text-align: left;
738
+ font-style: normal;
739
+ text-transform: none;
740
+ padding: 5px 0px 4px 10px;
741
+ }
742
+
743
+ .node-content[data-v-117d4091] {
744
+ width: 120px;
745
+ height: 44px;
746
+ background: #ffffff;
747
+ box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
748
+ border-radius: 2px 2px 2px 2px;
749
+ }
750
+ .content[data-v-117d4091] {
751
+ width: 28px;
752
+ height: 15px;
753
+ font-weight: 400;
754
+ font-size: 14px;
755
+ color: #333333;
756
+ line-height: 14px;
757
+ text-align: left;
758
+ font-style: normal;
759
+ text-transform: none;
760
+ padding: 5px 0px 4px 10px;
761
+ box-sizing: content-box;
762
+ }
763
+ .serviceflow-nodeView[data-v-91a913ff] {
744
764
  box-sizing: border-box;
745
765
  margin: 10px 10px;
746
766
  width: 180px;
@@ -749,7 +769,7 @@
749
769
  border-radius: 2px 2px 2px 2px;
750
770
  padding: 20px 10px;
751
771
  }
752
- .serviceflow-nodeTitle[data-v-4d28d77b] {
772
+ .serviceflow-nodeTitle[data-v-91a913ff] {
753
773
  width: 90px;
754
774
  height: 15px;
755
775
  font-weight: 400;
@@ -765,7 +785,7 @@
765
785
  overflow: hidden; /* 隐藏超出div宽度的文本 */
766
786
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
767
787
  }
768
- .serviceflow-nodeContent[data-v-4d28d77b] {
788
+ .serviceflow-nodeContent[data-v-91a913ff] {
769
789
  /* width: 100%; */
770
790
  height: 15px;
771
791
  font-weight: 400;
@@ -781,19 +801,19 @@
781
801
  overflow: hidden; /* 隐藏超出div宽度的文本 */
782
802
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
783
803
  }
784
- .serviceflow-nodeContent-desc[data-v-4d28d77b] {
804
+ .serviceflow-nodeContent-desc[data-v-91a913ff] {
785
805
  }
786
- .el-divider--horizontal[data-v-4d28d77b] {
806
+ .el-divider--horizontal[data-v-91a913ff] {
787
807
  margin: 12px 0;
788
808
  }
789
- .serviceflow-nodeView[data-v-4d28d77b] {
809
+ .serviceflow-nodeView[data-v-91a913ff] {
790
810
  border: 1px solid #5a90f9;
791
811
  background: #eef3fe;
792
812
  }
793
- .serviceflow-nodeTitle[data-v-4d28d77b] {
813
+ .serviceflow-nodeTitle[data-v-91a913ff] {
794
814
  width: 80px;
795
815
  }
796
- .serviceflow-nodeView[data-v-42ce3f17] {
816
+ .serviceflow-nodeView[data-v-23f1c97b] {
797
817
  box-sizing: border-box;
798
818
  margin: 10px 10px;
799
819
  width: 180px;
@@ -802,7 +822,7 @@
802
822
  border-radius: 2px 2px 2px 2px;
803
823
  padding: 20px 10px;
804
824
  }
805
- .serviceflow-nodeTitle[data-v-42ce3f17] {
825
+ .serviceflow-nodeTitle[data-v-23f1c97b] {
806
826
  width: 90px;
807
827
  height: 15px;
808
828
  font-weight: 400;
@@ -818,7 +838,7 @@
818
838
  overflow: hidden; /* 隐藏超出div宽度的文本 */
819
839
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
820
840
  }
821
- .serviceflow-nodeContent[data-v-42ce3f17] {
841
+ .serviceflow-nodeContent[data-v-23f1c97b] {
822
842
  /* width: 100%; */
823
843
  height: 15px;
824
844
  font-weight: 400;
@@ -834,19 +854,19 @@
834
854
  overflow: hidden; /* 隐藏超出div宽度的文本 */
835
855
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
836
856
  }
837
- .serviceflow-nodeContent-desc[data-v-42ce3f17] {
857
+ .serviceflow-nodeContent-desc[data-v-23f1c97b] {
838
858
  }
839
- .el-divider--horizontal[data-v-42ce3f17] {
859
+ .el-divider--horizontal[data-v-23f1c97b] {
840
860
  margin: 12px 0;
841
861
  }
842
- .serviceflow-nodeView[data-v-42ce3f17] {
862
+ .serviceflow-nodeView[data-v-23f1c97b] {
843
863
  border: 1px solid #5a90f9;
844
864
  background: #eef3fe;
845
865
  }
846
- .serviceflow-nodeTitle[data-v-42ce3f17] {
866
+ .serviceflow-nodeTitle[data-v-23f1c97b] {
847
867
  width: 80px;
848
868
  }
849
- .serviceflow-nodeView[data-v-91a913ff] {
869
+ .serviceflow-nodeView[data-v-6b34f36c] {
850
870
  box-sizing: border-box;
851
871
  margin: 10px 10px;
852
872
  width: 180px;
@@ -855,7 +875,7 @@
855
875
  border-radius: 2px 2px 2px 2px;
856
876
  padding: 20px 10px;
857
877
  }
858
- .serviceflow-nodeTitle[data-v-91a913ff] {
878
+ .serviceflow-nodeTitle[data-v-6b34f36c] {
859
879
  width: 90px;
860
880
  height: 15px;
861
881
  font-weight: 400;
@@ -871,7 +891,7 @@
871
891
  overflow: hidden; /* 隐藏超出div宽度的文本 */
872
892
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
873
893
  }
874
- .serviceflow-nodeContent[data-v-91a913ff] {
894
+ .serviceflow-nodeContent[data-v-6b34f36c] {
875
895
  /* width: 100%; */
876
896
  height: 15px;
877
897
  font-weight: 400;
@@ -887,19 +907,19 @@
887
907
  overflow: hidden; /* 隐藏超出div宽度的文本 */
888
908
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
889
909
  }
890
- .serviceflow-nodeContent-desc[data-v-91a913ff] {
910
+ .serviceflow-nodeContent-desc[data-v-6b34f36c] {
891
911
  }
892
- .el-divider--horizontal[data-v-91a913ff] {
912
+ .el-divider--horizontal[data-v-6b34f36c] {
893
913
  margin: 12px 0;
894
914
  }
895
- .serviceflow-nodeView[data-v-91a913ff] {
915
+ .serviceflow-nodeView[data-v-6b34f36c] {
896
916
  border: 1px solid #5a90f9;
897
917
  background: #eef3fe;
898
918
  }
899
- .serviceflow-nodeTitle[data-v-91a913ff] {
919
+ .serviceflow-nodeTitle[data-v-6b34f36c] {
900
920
  width: 80px;
901
921
  }
902
- .serviceflow-nodeView[data-v-1519c141] {
922
+ .serviceflow-nodeView[data-v-08d9d211] {
903
923
  box-sizing: border-box;
904
924
  margin: 10px 10px;
905
925
  width: 180px;
@@ -908,7 +928,7 @@
908
928
  border-radius: 2px 2px 2px 2px;
909
929
  padding: 20px 10px;
910
930
  }
911
- .serviceflow-nodeTitle[data-v-1519c141] {
931
+ .serviceflow-nodeTitle[data-v-08d9d211] {
912
932
  width: 90px;
913
933
  height: 15px;
914
934
  font-weight: 400;
@@ -924,7 +944,7 @@
924
944
  overflow: hidden; /* 隐藏超出div宽度的文本 */
925
945
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
926
946
  }
927
- .serviceflow-nodeContent[data-v-1519c141] {
947
+ .serviceflow-nodeContent[data-v-08d9d211] {
928
948
  /* width: 100%; */
929
949
  height: 15px;
930
950
  font-weight: 400;
@@ -940,16 +960,16 @@
940
960
  overflow: hidden; /* 隐藏超出div宽度的文本 */
941
961
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
942
962
  }
943
- .serviceflow-nodeContent-desc[data-v-1519c141] {
963
+ .serviceflow-nodeContent-desc[data-v-08d9d211] {
944
964
  }
945
- .el-divider--horizontal[data-v-1519c141] {
965
+ .el-divider--horizontal[data-v-08d9d211] {
946
966
  margin: 12px 0;
947
967
  }
948
- .serviceflow-nodeView[data-v-1519c141] {
968
+ .serviceflow-nodeView[data-v-08d9d211] {
949
969
  border: 1px solid #5a90f9;
950
970
  background: #eef3fe;
951
971
  }
952
- .serviceflow-nodeTitle[data-v-1519c141] {
972
+ .serviceflow-nodeTitle[data-v-08d9d211] {
953
973
  width: 80px;
954
974
  }
955
975
  .serviceflow-nodeView[data-v-b04d3f8b] {
@@ -1059,27 +1079,7 @@
1059
1079
  }
1060
1080
  .serviceflow-nodeContent[data-v-3c23a172] {
1061
1081
  }
1062
-
1063
- .aaa[data-v-8bd72b80] {
1064
- width: 300px;
1065
- height: 200px;
1066
- background: #ffffff;
1067
- box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
1068
- border-radius: 2px 2px 2px 2px;
1069
- }
1070
- .content[data-v-8bd72b80] {
1071
- width: 28px;
1072
- height: 15px;
1073
- font-weight: 400;
1074
- font-size: 14px;
1075
- color: #333333;
1076
- line-height: 14px;
1077
- text-align: left;
1078
- font-style: normal;
1079
- text-transform: none;
1080
- padding: 5px 0px 4px 10px;
1081
- }
1082
- .serviceflow-nodeView[data-v-6b34f36c] {
1082
+ .serviceflow-nodeView[data-v-1519c141] {
1083
1083
  box-sizing: border-box;
1084
1084
  margin: 10px 10px;
1085
1085
  width: 180px;
@@ -1088,7 +1088,7 @@
1088
1088
  border-radius: 2px 2px 2px 2px;
1089
1089
  padding: 20px 10px;
1090
1090
  }
1091
- .serviceflow-nodeTitle[data-v-6b34f36c] {
1091
+ .serviceflow-nodeTitle[data-v-1519c141] {
1092
1092
  width: 90px;
1093
1093
  height: 15px;
1094
1094
  font-weight: 400;
@@ -1104,7 +1104,7 @@
1104
1104
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1105
1105
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1106
1106
  }
1107
- .serviceflow-nodeContent[data-v-6b34f36c] {
1107
+ .serviceflow-nodeContent[data-v-1519c141] {
1108
1108
  /* width: 100%; */
1109
1109
  height: 15px;
1110
1110
  font-weight: 400;
@@ -1120,19 +1120,19 @@
1120
1120
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1121
1121
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1122
1122
  }
1123
- .serviceflow-nodeContent-desc[data-v-6b34f36c] {
1123
+ .serviceflow-nodeContent-desc[data-v-1519c141] {
1124
1124
  }
1125
- .el-divider--horizontal[data-v-6b34f36c] {
1125
+ .el-divider--horizontal[data-v-1519c141] {
1126
1126
  margin: 12px 0;
1127
1127
  }
1128
- .serviceflow-nodeView[data-v-6b34f36c] {
1128
+ .serviceflow-nodeView[data-v-1519c141] {
1129
1129
  border: 1px solid #5a90f9;
1130
1130
  background: #eef3fe;
1131
1131
  }
1132
- .serviceflow-nodeTitle[data-v-6b34f36c] {
1132
+ .serviceflow-nodeTitle[data-v-1519c141] {
1133
1133
  width: 80px;
1134
1134
  }
1135
- .serviceflow-nodeView[data-v-1ce8de44] {
1135
+ .serviceflow-nodeView[data-v-418f1558] {
1136
1136
  box-sizing: border-box;
1137
1137
  margin: 10px 10px;
1138
1138
  width: 180px;
@@ -1141,7 +1141,7 @@
1141
1141
  border-radius: 2px 2px 2px 2px;
1142
1142
  padding: 20px 10px;
1143
1143
  }
1144
- .serviceflow-nodeTitle[data-v-1ce8de44] {
1144
+ .serviceflow-nodeTitle[data-v-418f1558] {
1145
1145
  width: 90px;
1146
1146
  height: 15px;
1147
1147
  font-weight: 400;
@@ -1157,7 +1157,7 @@
1157
1157
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1158
1158
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1159
1159
  }
1160
- .serviceflow-nodeContent[data-v-1ce8de44] {
1160
+ .serviceflow-nodeContent[data-v-418f1558] {
1161
1161
  /* width: 100%; */
1162
1162
  height: 15px;
1163
1163
  font-weight: 400;
@@ -1173,28 +1173,28 @@
1173
1173
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1174
1174
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1175
1175
  }
1176
- .serviceflow-nodeContent-desc[data-v-1ce8de44] {
1176
+ .serviceflow-nodeContent-desc[data-v-418f1558] {
1177
1177
  }
1178
- .el-divider--horizontal[data-v-1ce8de44] {
1178
+ .el-divider--horizontal[data-v-418f1558] {
1179
1179
  margin: 12px 0;
1180
1180
  }
1181
- .serviceflow-nodeView[data-v-1ce8de44] {
1181
+ .serviceflow-nodeView[data-v-418f1558] {
1182
1182
  border: 1px solid #5a90f9;
1183
1183
  background: #eef3fe;
1184
1184
  width: 180px;
1185
1185
  min-height: 95px;
1186
1186
  }
1187
- .serviceflow-nodeContent[data-v-1ce8de44] {
1187
+ .serviceflow-nodeContent[data-v-418f1558] {
1188
1188
  }
1189
1189
 
1190
- .node-content[data-v-117d4091] {
1190
+ .node-content[data-v-669b618f] {
1191
1191
  width: 120px;
1192
1192
  height: 44px;
1193
1193
  background: #ffffff;
1194
1194
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
1195
1195
  border-radius: 2px 2px 2px 2px;
1196
1196
  }
1197
- .content[data-v-117d4091] {
1197
+ .content[data-v-669b618f] {
1198
1198
  width: 28px;
1199
1199
  height: 15px;
1200
1200
  font-weight: 400;
@@ -1205,9 +1205,9 @@
1205
1205
  font-style: normal;
1206
1206
  text-transform: none;
1207
1207
  padding: 5px 0px 4px 10px;
1208
- box-sizing: content-box;
1208
+ box-sizing: content-box;
1209
1209
  }
1210
- .serviceflow-nodeView[data-v-08d9d211] {
1210
+ .serviceflow-nodeView[data-v-42ce3f17] {
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-08d9d211] {
1219
+ .serviceflow-nodeTitle[data-v-42ce3f17] {
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-08d9d211] {
1235
+ .serviceflow-nodeContent[data-v-42ce3f17] {
1236
1236
  /* width: 100%; */
1237
1237
  height: 15px;
1238
1238
  font-weight: 400;
@@ -1248,26 +1248,33 @@
1248
1248
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1249
1249
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1250
1250
  }
1251
- .serviceflow-nodeContent-desc[data-v-08d9d211] {
1251
+ .serviceflow-nodeContent-desc[data-v-42ce3f17] {
1252
1252
  }
1253
- .el-divider--horizontal[data-v-08d9d211] {
1253
+ .el-divider--horizontal[data-v-42ce3f17] {
1254
1254
  margin: 12px 0;
1255
1255
  }
1256
- .serviceflow-nodeView[data-v-08d9d211] {
1256
+ .serviceflow-nodeView[data-v-42ce3f17] {
1257
1257
  border: 1px solid #5a90f9;
1258
1258
  background: #eef3fe;
1259
1259
  }
1260
- .serviceflow-nodeTitle[data-v-08d9d211] {
1260
+ .serviceflow-nodeTitle[data-v-42ce3f17] {
1261
1261
  width: 80px;
1262
1262
  }
1263
1263
 
1264
- .el-select + .el-input[data-v-f20126f5] {
1264
+ .el-radio[data-v-1ee0eb33] {
1265
+ margin-right: 10px;
1266
+ }
1267
+ [data-v-1ee0eb33] .el-empty__description {
1268
+ margin-top: 0px;
1269
+ }
1270
+
1271
+ .el-select + .el-input[data-v-b53b2895] {
1265
1272
  margin-left: 10px;
1266
1273
  }
1267
- .el-input + .el-input[data-v-f20126f5] {
1274
+ .el-input + .el-input[data-v-b53b2895] {
1268
1275
  margin-left: 10px;
1269
1276
  }
1270
- .el-input + .el-button[data-v-f20126f5] {
1277
+ .el-input + .el-button[data-v-b53b2895] {
1271
1278
  margin-left: 10px;
1272
1279
  }
1273
1280
 
@@ -1275,13 +1282,6 @@
1275
1282
  margin-right: 10px;
1276
1283
  }
1277
1284
 
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
1285
  .el-select + .el-input[data-v-7fcf8a84] {
1286
1286
  margin-left: 10px;
1287
1287
  }
@@ -1306,13 +1306,13 @@
1306
1306
  cursor: pointer;
1307
1307
  }
1308
1308
 
1309
+ [data-v-9a3ee19e] .el-dropdown {
1310
+ vertical-align: middle;
1311
+ }
1312
+
1309
1313
  [data-v-2d06523b] .el-upload {
1310
1314
  width: 100%;
1311
1315
  }
1312
1316
  [data-v-2d06523b] .el-button {
1313
1317
  width: 100%;
1314
1318
  }
1315
-
1316
- [data-v-9a3ee19e] .el-dropdown {
1317
- vertical-align: middle;
1318
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "service-flow-designer",
3
- "version": "2.1.25",
3
+ "version": "2.1.29",
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.66",
64
+ "agilebuilder-ui": "1.0.68",
65
65
  "codemirror": "^6.0.1",
66
66
  "nprogress": "^0.2.0",
67
67
  "quill": "^2.0.2",