service-flow-designer 2.1.26 → 2.1.32

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
@@ -22,48 +22,7 @@
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
- .serviceflow-design-content[data-v-0ca3e4c5] {
25
+ .serviceflow-design-content[data-v-5e9e3ee6] {
67
26
  overflow: auto;
68
27
  display: block;
69
28
  flex: none;
@@ -71,10 +30,10 @@
71
30
  width: 100%;
72
31
  height: 100%;
73
32
  }
74
- .serviceflow-design-content[data-v-0ca3e4c5]::-webkit-scrollbar {
33
+ .serviceflow-design-content[data-v-5e9e3ee6]::-webkit-scrollbar {
75
34
  width: 1px;
76
35
  }
77
- .serviceflow-design-tool[data-v-0ca3e4c5] {
36
+ .serviceflow-design-tool[data-v-5e9e3ee6] {
78
37
  position: -webkit-sticky; /**Safari */
79
38
  position: sticky;
80
39
  width: 100%;
@@ -88,7 +47,7 @@
88
47
  z-index: 0;
89
48
  box-sizing: content-box;
90
49
  }
91
- .serviceflow-page-type[data-v-0ca3e4c5] {
50
+ .serviceflow-page-type[data-v-5e9e3ee6] {
92
51
  padding-top: 11px;
93
52
  padding-left: 6px;
94
53
  padding-right: 6px;
@@ -96,14 +55,14 @@
96
55
  border-radius: 4px 4px 4px 4px;
97
56
  cursor: pointer;
98
57
  }
99
- .serviceflow-page-type[data-v-0ca3e4c5]:hover {
58
+ .serviceflow-page-type[data-v-5e9e3ee6]:hover {
100
59
  background: rgba(11, 45, 101, 0.105);
101
60
  }
102
- .serviceflow-page-type.selected[data-v-0ca3e4c5] {
61
+ .serviceflow-page-type.selected[data-v-5e9e3ee6] {
103
62
  background: #5893ef;
104
63
  color: #ffffff;
105
64
  }
106
- .serviceflow-page-type > label[data-v-0ca3e4c5] {
65
+ .serviceflow-page-type > label[data-v-5e9e3ee6] {
107
66
  font-size: 14px;
108
67
  padding-left: 6px;
109
68
  padding-right: 6px;
@@ -112,11 +71,11 @@
112
71
  position: relative;
113
72
  cursor: pointer;
114
73
  }
115
- .serviceflow-design-tool-split[data-v-0ca3e4c5] {
74
+ .serviceflow-design-tool-split[data-v-5e9e3ee6] {
116
75
  height: 25px;
117
76
  margin-top: -12px;
118
77
  }
119
- .serviceflow-design-board[data-v-0ca3e4c5] {
78
+ .serviceflow-design-board[data-v-5e9e3ee6] {
120
79
  margin: 0 auto;
121
80
  margin-top: 28px;
122
81
  overflow-y: auto;
@@ -126,24 +85,24 @@
126
85
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
127
86
  padding-bottom: 20px;
128
87
  }
129
- .container[data-v-0ca3e4c5] {
88
+ .container[data-v-5e9e3ee6] {
130
89
  height: 100%;
131
90
  width: 100%;
132
91
  }
133
- .amb-item-ghost[data-v-0ca3e4c5] {
92
+ .amb-item-ghost[data-v-5e9e3ee6] {
134
93
  background-color: #5893ef;
135
94
  height: 5px;
136
95
  line-height: 5px;
137
96
  overflow: hidden;
138
97
  }
139
98
  /* 将你的自定义样式添加到这里 */
140
- .draggable-placeholder[data-v-0ca3e4c5] {
99
+ .draggable-placeholder[data-v-5e9e3ee6] {
141
100
  background-color: red;
142
101
  border: 1px dashed #ddd;
143
102
  margin: 5px;
144
103
  padding: 10px;
145
104
  }
146
- #LF-view[data-v-0ca3e4c5] {
105
+ #LF-view[data-v-5e9e3ee6] {
147
106
  width: calc(100% - 100px);
148
107
  height: 80%;
149
108
  outline: none;
@@ -155,10 +114,10 @@
155
114
  /**
156
115
  解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
157
116
  */
158
- [data-v-0ca3e4c5] .el-overlay {
117
+ [data-v-5e9e3ee6] .el-overlay {
159
118
  position: static !important;
160
119
  }
161
- .triangle[data-v-0ca3e4c5] {
120
+ .triangle[data-v-5e9e3ee6] {
162
121
  display: inline-block;
163
122
  width: 0;
164
123
  height: 0;
@@ -167,81 +126,61 @@
167
126
  border-color: transparent transparent var(--el-skeleton-color) transparent;
168
127
  }
169
128
 
170
- .el-alert + .el-form-item[data-v-a158f309] {
171
- margin-top: 10px;
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;
172
136
  }
173
-
174
- .editorTool[data-v-d55ab098] {
175
- margin-left: auto;
137
+ /*控制滚动条宽度*/
138
+ .amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
139
+ width: 1px;
176
140
  }
177
- .editorOption[data-v-d55ab098] {
178
- margin-right: 10px;
179
- cursor: pointer;
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;
180
148
  }
181
- .pppp[data-v-d55ab098] {
182
- display: flex; /* 使用Flex布局 */
183
- justify-content: flex-start;
184
- align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
185
- }
186
-
187
- [data-v-65e38bfb] .el-radio {
188
- margin: 0;
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;
189
155
  }
190
- .el-radio + .el-radio[data-v-65e38bfb] {
191
- margin-left: 10px;
192
- }
193
-
194
- [data-v-808a13e1] .el-radio {
195
- margin: 0;
156
+ .amb-assembly-header-type > label[data-v-59e0837d] {
157
+ padding: 4px 14px;
158
+ cursor: pointer;
159
+ font-size: 14px;
196
160
  }
197
- .el-radio + .el-radio[data-v-808a13e1] {
198
- margin-left: 10px;
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;
199
168
  }
200
169
 
201
- .editorTool[data-v-684c1f08] {
170
+ .editorTool[data-v-d55ab098] {
202
171
  margin-left: auto;
203
172
  }
204
- .editorOption[data-v-684c1f08] {
173
+ .editorOption[data-v-d55ab098] {
205
174
  margin-right: 10px;
206
175
  cursor: pointer;
207
176
  }
208
- .pppp[data-v-684c1f08] {
177
+ .pppp[data-v-d55ab098] {
209
178
  display: flex; /* 使用Flex布局 */
210
179
  justify-content: flex-start;
211
180
  align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
212
181
  }
213
182
 
214
- .el-alert + .el-form-item[data-v-32875028] {
215
- margin-top: 10px;
216
- }
217
- .el-alert + .el-table[data-v-32875028] {
218
- margin: 10px 0;
219
- }
220
-
221
- .el-alert + .el-table[data-v-e27c4c1e] {
222
- margin-top: 10px;
223
- }
224
- .el-table + .el-alert[data-v-e27c4c1e] {
225
- margin: 10px 0;
226
- }
227
- .el-alert + .el-form-item[data-v-e27c4c1e] {
228
- margin-top: 10px;
229
- }
230
-
231
- .el-alert + .el-table[data-v-d978e7dc] {
232
- margin-top: 10px;
233
- }
234
- .el-table + .el-alert[data-v-d978e7dc] {
235
- margin: 10px 0;
236
- }
237
- .el-alert + .el-form-item[data-v-d978e7dc] {
238
- margin-top: 10px;
239
- }
240
-
241
- .el-alert + .el-table[data-v-82e0dfef] {
242
- margin-top: 10px;
243
- }
244
- .el-alert + .el-form-item[data-v-82e0dfef] {
183
+ .el-alert + .el-form-item[data-v-a158f309] {
245
184
  margin-top: 10px;
246
185
  }
247
186
 
@@ -252,11 +191,11 @@
252
191
  margin-top: 10px;
253
192
  }
254
193
 
255
- .el-alert + .el-table[data-v-028fb838] {
256
- margin-top: 10px;
194
+ [data-v-ac2ec342] .el-radio {
195
+ margin: 0;
257
196
  }
258
- .el-table + .el-alert[data-v-028fb838] {
259
- margin: 10px 0;
197
+ .el-radio + .el-radio[data-v-ac2ec342] {
198
+ margin-left: 10px;
260
199
  }
261
200
  .serviceflow-attr-base-content[data-v-8bad091d] {
262
201
  background: #ffffff;
@@ -325,6 +264,18 @@
325
264
  opacity: 1 !important;
326
265
  }
327
266
 
267
+ [data-v-65e38bfb] .el-radio {
268
+ margin: 0;
269
+ }
270
+ .el-radio + .el-radio[data-v-65e38bfb] {
271
+ margin-left: 10px;
272
+ }
273
+
274
+ .el-dialog__wrapper[data-v-d41cb0ad] {
275
+ overflow: hidden !important;
276
+ padding-right: 0 !important;
277
+ }
278
+
328
279
  [data-v-286d914e] .el-table__row {
329
280
  cursor: pointer;
330
281
  }
@@ -361,6 +312,26 @@
361
312
  align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
362
313
  }
363
314
 
315
+ .editorTool[data-v-684c1f08] {
316
+ margin-left: auto;
317
+ }
318
+ .editorOption[data-v-684c1f08] {
319
+ margin-right: 10px;
320
+ cursor: pointer;
321
+ }
322
+ .pppp[data-v-684c1f08] {
323
+ display: flex; /* 使用Flex布局 */
324
+ justify-content: flex-start;
325
+ align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
326
+ }
327
+
328
+ .el-alert + .el-table[data-v-028fb838] {
329
+ margin-top: 10px;
330
+ }
331
+ .el-table + .el-alert[data-v-028fb838] {
332
+ margin: 10px 0;
333
+ }
334
+
364
335
  .el-drawer__header {
365
336
  margin-bottom: 0 !important;
366
337
  }
@@ -371,9 +342,11 @@
371
342
  position: static;
372
343
  }
373
344
 
374
- .el-dialog__wrapper[data-v-d41cb0ad] {
375
- overflow: hidden !important;
376
- padding-right: 0 !important;
345
+ .el-alert + .el-table[data-v-82e0dfef] {
346
+ margin-top: 10px;
347
+ }
348
+ .el-alert + .el-form-item[data-v-82e0dfef] {
349
+ margin-top: 10px;
377
350
  }
378
351
  .serviceflow-control-item[data-v-a2bd7452] {
379
352
  top: -5px;
@@ -506,7 +479,55 @@
506
479
  outline: none;
507
480
  margin-left: 50px;
508
481
  }
509
- .serviceflow-nodeView[data-v-9770119b] {
482
+
483
+ .el-alert + .el-form-item[data-v-32875028] {
484
+ margin-top: 10px;
485
+ }
486
+ .el-alert + .el-table[data-v-32875028] {
487
+ margin: 10px 0;
488
+ }
489
+
490
+ .el-alert + .el-table[data-v-d978e7dc] {
491
+ margin-top: 10px;
492
+ }
493
+ .el-table + .el-alert[data-v-d978e7dc] {
494
+ margin: 10px 0;
495
+ }
496
+ .el-alert + .el-form-item[data-v-d978e7dc] {
497
+ margin-top: 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-117d4091] {
511
+ width: 120px;
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;
516
+ }
517
+ .content[data-v-117d4091] {
518
+ width: 28px;
519
+ height: 15px;
520
+ font-weight: 400;
521
+ font-size: 14px;
522
+ color: #333333;
523
+ line-height: 14px;
524
+ text-align: left;
525
+ font-style: normal;
526
+ text-transform: none;
527
+ padding: 5px 0px 4px 10px;
528
+ box-sizing: content-box;
529
+ }
530
+ .serviceflow-nodeView[data-v-418f1558] {
510
531
  box-sizing: border-box;
511
532
  margin: 10px 10px;
512
533
  width: 180px;
@@ -515,7 +536,7 @@
515
536
  border-radius: 2px 2px 2px 2px;
516
537
  padding: 20px 10px;
517
538
  }
518
- .serviceflow-nodeTitle[data-v-9770119b] {
539
+ .serviceflow-nodeTitle[data-v-418f1558] {
519
540
  width: 90px;
520
541
  height: 15px;
521
542
  font-weight: 400;
@@ -531,7 +552,7 @@
531
552
  overflow: hidden; /* 隐藏超出div宽度的文本 */
532
553
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
533
554
  }
534
- .serviceflow-nodeContent[data-v-9770119b] {
555
+ .serviceflow-nodeContent[data-v-418f1558] {
535
556
  /* width: 100%; */
536
557
  height: 15px;
537
558
  font-weight: 400;
@@ -547,19 +568,20 @@
547
568
  overflow: hidden; /* 隐藏超出div宽度的文本 */
548
569
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
549
570
  }
550
- .serviceflow-nodeContent-desc[data-v-9770119b] {
571
+ .serviceflow-nodeContent-desc[data-v-418f1558] {
551
572
  }
552
- .el-divider--horizontal[data-v-9770119b] {
573
+ .el-divider--horizontal[data-v-418f1558] {
553
574
  margin: 12px 0;
554
575
  }
555
- .serviceflow-nodeView[data-v-9770119b] {
576
+ .serviceflow-nodeView[data-v-418f1558] {
556
577
  border: 1px solid #5a90f9;
557
- background: #eef3fe;
578
+ background: #eef3fe;
579
+ width: 180px;
580
+ min-height: 95px;
558
581
  }
559
- .serviceflow-nodeTitle[data-v-9770119b] {
560
- width: 80px;
582
+ .serviceflow-nodeContent[data-v-418f1558] {
561
583
  }
562
- .serviceflow-nodeView[data-v-23f1c97b] {
584
+ .serviceflow-nodeView[data-v-9770119b] {
563
585
  box-sizing: border-box;
564
586
  margin: 10px 10px;
565
587
  width: 180px;
@@ -568,7 +590,7 @@
568
590
  border-radius: 2px 2px 2px 2px;
569
591
  padding: 20px 10px;
570
592
  }
571
- .serviceflow-nodeTitle[data-v-23f1c97b] {
593
+ .serviceflow-nodeTitle[data-v-9770119b] {
572
594
  width: 90px;
573
595
  height: 15px;
574
596
  font-weight: 400;
@@ -584,7 +606,7 @@
584
606
  overflow: hidden; /* 隐藏超出div宽度的文本 */
585
607
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
586
608
  }
587
- .serviceflow-nodeContent[data-v-23f1c97b] {
609
+ .serviceflow-nodeContent[data-v-9770119b] {
588
610
  /* width: 100%; */
589
611
  height: 15px;
590
612
  font-weight: 400;
@@ -600,38 +622,70 @@
600
622
  overflow: hidden; /* 隐藏超出div宽度的文本 */
601
623
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
602
624
  }
603
- .serviceflow-nodeContent-desc[data-v-23f1c97b] {
625
+ .serviceflow-nodeContent-desc[data-v-9770119b] {
604
626
  }
605
- .el-divider--horizontal[data-v-23f1c97b] {
627
+ .el-divider--horizontal[data-v-9770119b] {
606
628
  margin: 12px 0;
607
629
  }
608
- .serviceflow-nodeView[data-v-23f1c97b] {
630
+ .serviceflow-nodeView[data-v-9770119b] {
609
631
  border: 1px solid #5a90f9;
610
632
  background: #eef3fe;
611
633
  }
612
- .serviceflow-nodeTitle[data-v-23f1c97b] {
634
+ .serviceflow-nodeTitle[data-v-9770119b] {
613
635
  width: 80px;
614
636
  }
615
-
616
- .node-content[data-v-669b618f] {
617
- width: 120px;
618
- height: 44px;
619
- background: #ffffff;
637
+ .serviceflow-nodeView[data-v-91a913ff] {
638
+ box-sizing: border-box;
639
+ margin: 10px 10px;
640
+ width: 180px;
641
+ height: 95px;
620
642
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
621
- border-radius: 2px 2px 2px 2px;
643
+ border-radius: 2px 2px 2px 2px;
644
+ padding: 20px 10px;
622
645
  }
623
- .content[data-v-669b618f] {
624
- width: 28px;
646
+ .serviceflow-nodeTitle[data-v-91a913ff] {
647
+ width: 90px;
625
648
  height: 15px;
626
649
  font-weight: 400;
627
- font-size: 14px;
650
+ font-size: 16px;
628
651
  color: #333333;
629
652
  line-height: 14px;
630
653
  text-align: left;
631
654
  font-style: normal;
632
655
  text-transform: none;
633
- padding: 5px 0px 4px 10px;
634
- box-sizing: content-box;
656
+ padding: 0px 24px;
657
+ box-sizing: content-box;
658
+ white-space: nowrap; /* 确保文本在一行内显示 */
659
+ overflow: hidden; /* 隐藏超出div宽度的文本 */
660
+ text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
661
+ }
662
+ .serviceflow-nodeContent[data-v-91a913ff] {
663
+ /* width: 100%; */
664
+ height: 15px;
665
+ font-weight: 400;
666
+ font-size: 14px;
667
+ color: #666666;
668
+ line-height: 14px;
669
+ text-align: left;
670
+ font-style: normal;
671
+ text-transform: none;
672
+ padding: 0px 0px;
673
+ box-sizing: content-box;
674
+ white-space: nowrap; /* 确保文本在一行内显示 */
675
+ overflow: hidden; /* 隐藏超出div宽度的文本 */
676
+ text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
677
+ }
678
+ .serviceflow-nodeContent-desc[data-v-91a913ff] {
679
+ }
680
+ .el-divider--horizontal[data-v-91a913ff] {
681
+ margin: 12px 0;
682
+ }
683
+ .serviceflow-nodeView[data-v-91a913ff] {
684
+ border: 1px solid #5a90f9;
685
+ background: #eef3fe;
686
+ }
687
+ .serviceflow-nodeTitle[data-v-91a913ff] {
688
+ width: 80px;
635
689
  }
636
690
  .serviceflow-nodeView[data-v-96d149c1] {
637
691
  box-sizing: border-box;
@@ -686,7 +740,7 @@
686
740
  .serviceflow-nodeTitle[data-v-96d149c1] {
687
741
  width: 80px;
688
742
  }
689
- .serviceflow-nodeView[data-v-418f1558] {
743
+ .serviceflow-nodeView[data-v-b04d3f8b] {
690
744
  box-sizing: border-box;
691
745
  margin: 10px 10px;
692
746
  width: 180px;
@@ -695,7 +749,7 @@
695
749
  border-radius: 2px 2px 2px 2px;
696
750
  padding: 20px 10px;
697
751
  }
698
- .serviceflow-nodeTitle[data-v-418f1558] {
752
+ .serviceflow-nodeTitle[data-v-b04d3f8b] {
699
753
  width: 90px;
700
754
  height: 15px;
701
755
  font-weight: 400;
@@ -711,7 +765,7 @@
711
765
  overflow: hidden; /* 隐藏超出div宽度的文本 */
712
766
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
713
767
  }
714
- .serviceflow-nodeContent[data-v-418f1558] {
768
+ .serviceflow-nodeContent[data-v-b04d3f8b] {
715
769
  /* width: 100%; */
716
770
  height: 15px;
717
771
  font-weight: 400;
@@ -727,18 +781,17 @@
727
781
  overflow: hidden; /* 隐藏超出div宽度的文本 */
728
782
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
729
783
  }
730
- .serviceflow-nodeContent-desc[data-v-418f1558] {
784
+ .serviceflow-nodeContent-desc[data-v-b04d3f8b] {
731
785
  }
732
- .el-divider--horizontal[data-v-418f1558] {
786
+ .el-divider--horizontal[data-v-b04d3f8b] {
733
787
  margin: 12px 0;
734
788
  }
735
- .serviceflow-nodeView[data-v-418f1558] {
789
+ .serviceflow-nodeView[data-v-b04d3f8b] {
736
790
  border: 1px solid #5a90f9;
737
- background: #eef3fe;
738
- width: 180px;
739
- min-height: 95px;
791
+ background: #eef3fe;
740
792
  }
741
- .serviceflow-nodeContent[data-v-418f1558] {
793
+ .serviceflow-nodeTitle[data-v-b04d3f8b] {
794
+ width: 80px;
742
795
  }
743
796
  .serviceflow-nodeView[data-v-4d28d77b] {
744
797
  box-sizing: border-box;
@@ -793,60 +846,28 @@
793
846
  .serviceflow-nodeTitle[data-v-4d28d77b] {
794
847
  width: 80px;
795
848
  }
796
- .serviceflow-nodeView[data-v-42ce3f17] {
797
- box-sizing: border-box;
798
- margin: 10px 10px;
799
- width: 180px;
800
- height: 95px;
849
+
850
+ .node-content[data-v-669b618f] {
851
+ width: 120px;
852
+ height: 44px;
853
+ background: #ffffff;
801
854
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
802
- border-radius: 2px 2px 2px 2px;
803
- padding: 20px 10px;
804
- }
805
- .serviceflow-nodeTitle[data-v-42ce3f17] {
806
- width: 90px;
807
- height: 15px;
808
- font-weight: 400;
809
- font-size: 16px;
810
- color: #333333;
811
- line-height: 14px;
812
- text-align: left;
813
- font-style: normal;
814
- text-transform: none;
815
- padding: 0px 24px;
816
- box-sizing: content-box;
817
- white-space: nowrap; /* 确保文本在一行内显示 */
818
- overflow: hidden; /* 隐藏超出div宽度的文本 */
819
- text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
855
+ border-radius: 2px 2px 2px 2px;
820
856
  }
821
- .serviceflow-nodeContent[data-v-42ce3f17] {
822
- /* width: 100%; */
857
+ .content[data-v-669b618f] {
858
+ width: 28px;
823
859
  height: 15px;
824
860
  font-weight: 400;
825
861
  font-size: 14px;
826
- color: #666666;
862
+ color: #333333;
827
863
  line-height: 14px;
828
864
  text-align: left;
829
865
  font-style: normal;
830
866
  text-transform: none;
831
- padding: 0px 0px;
832
- box-sizing: content-box;
833
- white-space: nowrap; /* 确保文本在一行内显示 */
834
- overflow: hidden; /* 隐藏超出div宽度的文本 */
835
- text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
836
- }
837
- .serviceflow-nodeContent-desc[data-v-42ce3f17] {
838
- }
839
- .el-divider--horizontal[data-v-42ce3f17] {
840
- margin: 12px 0;
841
- }
842
- .serviceflow-nodeView[data-v-42ce3f17] {
843
- border: 1px solid #5a90f9;
844
- background: #eef3fe;
845
- }
846
- .serviceflow-nodeTitle[data-v-42ce3f17] {
847
- width: 80px;
867
+ padding: 5px 0px 4px 10px;
868
+ box-sizing: content-box;
848
869
  }
849
- .serviceflow-nodeView[data-v-91a913ff] {
870
+ .serviceflow-nodeView[data-v-1ce8de44] {
850
871
  box-sizing: border-box;
851
872
  margin: 10px 10px;
852
873
  width: 180px;
@@ -855,7 +876,7 @@
855
876
  border-radius: 2px 2px 2px 2px;
856
877
  padding: 20px 10px;
857
878
  }
858
- .serviceflow-nodeTitle[data-v-91a913ff] {
879
+ .serviceflow-nodeTitle[data-v-1ce8de44] {
859
880
  width: 90px;
860
881
  height: 15px;
861
882
  font-weight: 400;
@@ -871,7 +892,7 @@
871
892
  overflow: hidden; /* 隐藏超出div宽度的文本 */
872
893
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
873
894
  }
874
- .serviceflow-nodeContent[data-v-91a913ff] {
895
+ .serviceflow-nodeContent[data-v-1ce8de44] {
875
896
  /* width: 100%; */
876
897
  height: 15px;
877
898
  font-weight: 400;
@@ -887,19 +908,40 @@
887
908
  overflow: hidden; /* 隐藏超出div宽度的文本 */
888
909
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
889
910
  }
890
- .serviceflow-nodeContent-desc[data-v-91a913ff] {
911
+ .serviceflow-nodeContent-desc[data-v-1ce8de44] {
891
912
  }
892
- .el-divider--horizontal[data-v-91a913ff] {
913
+ .el-divider--horizontal[data-v-1ce8de44] {
893
914
  margin: 12px 0;
894
915
  }
895
- .serviceflow-nodeView[data-v-91a913ff] {
916
+ .serviceflow-nodeView[data-v-1ce8de44] {
896
917
  border: 1px solid #5a90f9;
897
- background: #eef3fe;
918
+ background: #eef3fe;
919
+ width: 180px;
920
+ min-height: 95px;
898
921
  }
899
- .serviceflow-nodeTitle[data-v-91a913ff] {
900
- width: 80px;
922
+ .serviceflow-nodeContent[data-v-1ce8de44] {
901
923
  }
902
- .serviceflow-nodeView[data-v-1519c141] {
924
+
925
+ .aaa[data-v-8bd72b80] {
926
+ width: 300px;
927
+ height: 200px;
928
+ background: #ffffff;
929
+ box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
930
+ border-radius: 2px 2px 2px 2px;
931
+ }
932
+ .content[data-v-8bd72b80] {
933
+ width: 28px;
934
+ height: 15px;
935
+ font-weight: 400;
936
+ font-size: 14px;
937
+ color: #333333;
938
+ line-height: 14px;
939
+ text-align: left;
940
+ font-style: normal;
941
+ text-transform: none;
942
+ padding: 5px 0px 4px 10px;
943
+ }
944
+ .serviceflow-nodeView[data-v-3c23a172] {
903
945
  box-sizing: border-box;
904
946
  margin: 10px 10px;
905
947
  width: 180px;
@@ -908,7 +950,7 @@
908
950
  border-radius: 2px 2px 2px 2px;
909
951
  padding: 20px 10px;
910
952
  }
911
- .serviceflow-nodeTitle[data-v-1519c141] {
953
+ .serviceflow-nodeTitle[data-v-3c23a172] {
912
954
  width: 90px;
913
955
  height: 15px;
914
956
  font-weight: 400;
@@ -924,7 +966,7 @@
924
966
  overflow: hidden; /* 隐藏超出div宽度的文本 */
925
967
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
926
968
  }
927
- .serviceflow-nodeContent[data-v-1519c141] {
969
+ .serviceflow-nodeContent[data-v-3c23a172] {
928
970
  /* width: 100%; */
929
971
  height: 15px;
930
972
  font-weight: 400;
@@ -940,19 +982,20 @@
940
982
  overflow: hidden; /* 隐藏超出div宽度的文本 */
941
983
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
942
984
  }
943
- .serviceflow-nodeContent-desc[data-v-1519c141] {
985
+ .serviceflow-nodeContent-desc[data-v-3c23a172] {
944
986
  }
945
- .el-divider--horizontal[data-v-1519c141] {
987
+ .el-divider--horizontal[data-v-3c23a172] {
946
988
  margin: 12px 0;
947
989
  }
948
- .serviceflow-nodeView[data-v-1519c141] {
990
+ .serviceflow-nodeView[data-v-3c23a172] {
949
991
  border: 1px solid #5a90f9;
950
- background: #eef3fe;
992
+ background: #eef3fe;
993
+ width: 180px;
994
+ min-height: 95px;
951
995
  }
952
- .serviceflow-nodeTitle[data-v-1519c141] {
953
- width: 80px;
996
+ .serviceflow-nodeContent[data-v-3c23a172] {
954
997
  }
955
- .serviceflow-nodeView[data-v-b04d3f8b] {
998
+ .serviceflow-nodeView[data-v-1519c141] {
956
999
  box-sizing: border-box;
957
1000
  margin: 10px 10px;
958
1001
  width: 180px;
@@ -961,7 +1004,7 @@
961
1004
  border-radius: 2px 2px 2px 2px;
962
1005
  padding: 20px 10px;
963
1006
  }
964
- .serviceflow-nodeTitle[data-v-b04d3f8b] {
1007
+ .serviceflow-nodeTitle[data-v-1519c141] {
965
1008
  width: 90px;
966
1009
  height: 15px;
967
1010
  font-weight: 400;
@@ -977,7 +1020,7 @@
977
1020
  overflow: hidden; /* 隐藏超出div宽度的文本 */
978
1021
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
979
1022
  }
980
- .serviceflow-nodeContent[data-v-b04d3f8b] {
1023
+ .serviceflow-nodeContent[data-v-1519c141] {
981
1024
  /* width: 100%; */
982
1025
  height: 15px;
983
1026
  font-weight: 400;
@@ -993,19 +1036,19 @@
993
1036
  overflow: hidden; /* 隐藏超出div宽度的文本 */
994
1037
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
995
1038
  }
996
- .serviceflow-nodeContent-desc[data-v-b04d3f8b] {
1039
+ .serviceflow-nodeContent-desc[data-v-1519c141] {
997
1040
  }
998
- .el-divider--horizontal[data-v-b04d3f8b] {
1041
+ .el-divider--horizontal[data-v-1519c141] {
999
1042
  margin: 12px 0;
1000
1043
  }
1001
- .serviceflow-nodeView[data-v-b04d3f8b] {
1044
+ .serviceflow-nodeView[data-v-1519c141] {
1002
1045
  border: 1px solid #5a90f9;
1003
1046
  background: #eef3fe;
1004
1047
  }
1005
- .serviceflow-nodeTitle[data-v-b04d3f8b] {
1048
+ .serviceflow-nodeTitle[data-v-1519c141] {
1006
1049
  width: 80px;
1007
1050
  }
1008
- .serviceflow-nodeView[data-v-3c23a172] {
1051
+ .serviceflow-nodeView[data-v-6b34f36c] {
1009
1052
  box-sizing: border-box;
1010
1053
  margin: 10px 10px;
1011
1054
  width: 180px;
@@ -1014,7 +1057,7 @@
1014
1057
  border-radius: 2px 2px 2px 2px;
1015
1058
  padding: 20px 10px;
1016
1059
  }
1017
- .serviceflow-nodeTitle[data-v-3c23a172] {
1060
+ .serviceflow-nodeTitle[data-v-6b34f36c] {
1018
1061
  width: 90px;
1019
1062
  height: 15px;
1020
1063
  font-weight: 400;
@@ -1030,7 +1073,7 @@
1030
1073
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1031
1074
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1032
1075
  }
1033
- .serviceflow-nodeContent[data-v-3c23a172] {
1076
+ .serviceflow-nodeContent[data-v-6b34f36c] {
1034
1077
  /* width: 100%; */
1035
1078
  height: 15px;
1036
1079
  font-weight: 400;
@@ -1046,40 +1089,19 @@
1046
1089
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1047
1090
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1048
1091
  }
1049
- .serviceflow-nodeContent-desc[data-v-3c23a172] {
1092
+ .serviceflow-nodeContent-desc[data-v-6b34f36c] {
1050
1093
  }
1051
- .el-divider--horizontal[data-v-3c23a172] {
1094
+ .el-divider--horizontal[data-v-6b34f36c] {
1052
1095
  margin: 12px 0;
1053
1096
  }
1054
- .serviceflow-nodeView[data-v-3c23a172] {
1097
+ .serviceflow-nodeView[data-v-6b34f36c] {
1055
1098
  border: 1px solid #5a90f9;
1056
- background: #eef3fe;
1057
- width: 180px;
1058
- min-height: 95px;
1059
- }
1060
- .serviceflow-nodeContent[data-v-3c23a172] {
1061
- }
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;
1099
+ background: #eef3fe;
1069
1100
  }
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;
1101
+ .serviceflow-nodeTitle[data-v-6b34f36c] {
1102
+ width: 80px;
1081
1103
  }
1082
- .serviceflow-nodeView[data-v-6b34f36c] {
1104
+ .serviceflow-nodeView[data-v-42ce3f17] {
1083
1105
  box-sizing: border-box;
1084
1106
  margin: 10px 10px;
1085
1107
  width: 180px;
@@ -1088,7 +1110,7 @@
1088
1110
  border-radius: 2px 2px 2px 2px;
1089
1111
  padding: 20px 10px;
1090
1112
  }
1091
- .serviceflow-nodeTitle[data-v-6b34f36c] {
1113
+ .serviceflow-nodeTitle[data-v-42ce3f17] {
1092
1114
  width: 90px;
1093
1115
  height: 15px;
1094
1116
  font-weight: 400;
@@ -1104,7 +1126,7 @@
1104
1126
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1105
1127
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1106
1128
  }
1107
- .serviceflow-nodeContent[data-v-6b34f36c] {
1129
+ .serviceflow-nodeContent[data-v-42ce3f17] {
1108
1130
  /* width: 100%; */
1109
1131
  height: 15px;
1110
1132
  font-weight: 400;
@@ -1120,19 +1142,19 @@
1120
1142
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1121
1143
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1122
1144
  }
1123
- .serviceflow-nodeContent-desc[data-v-6b34f36c] {
1145
+ .serviceflow-nodeContent-desc[data-v-42ce3f17] {
1124
1146
  }
1125
- .el-divider--horizontal[data-v-6b34f36c] {
1147
+ .el-divider--horizontal[data-v-42ce3f17] {
1126
1148
  margin: 12px 0;
1127
1149
  }
1128
- .serviceflow-nodeView[data-v-6b34f36c] {
1150
+ .serviceflow-nodeView[data-v-42ce3f17] {
1129
1151
  border: 1px solid #5a90f9;
1130
1152
  background: #eef3fe;
1131
1153
  }
1132
- .serviceflow-nodeTitle[data-v-6b34f36c] {
1154
+ .serviceflow-nodeTitle[data-v-42ce3f17] {
1133
1155
  width: 80px;
1134
1156
  }
1135
- .serviceflow-nodeView[data-v-1ce8de44] {
1157
+ .serviceflow-nodeView[data-v-23f1c97b] {
1136
1158
  box-sizing: border-box;
1137
1159
  margin: 10px 10px;
1138
1160
  width: 180px;
@@ -1141,7 +1163,7 @@
1141
1163
  border-radius: 2px 2px 2px 2px;
1142
1164
  padding: 20px 10px;
1143
1165
  }
1144
- .serviceflow-nodeTitle[data-v-1ce8de44] {
1166
+ .serviceflow-nodeTitle[data-v-23f1c97b] {
1145
1167
  width: 90px;
1146
1168
  height: 15px;
1147
1169
  font-weight: 400;
@@ -1157,7 +1179,7 @@
1157
1179
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1158
1180
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1159
1181
  }
1160
- .serviceflow-nodeContent[data-v-1ce8de44] {
1182
+ .serviceflow-nodeContent[data-v-23f1c97b] {
1161
1183
  /* width: 100%; */
1162
1184
  height: 15px;
1163
1185
  font-weight: 400;
@@ -1173,39 +1195,17 @@
1173
1195
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1174
1196
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1175
1197
  }
1176
- .serviceflow-nodeContent-desc[data-v-1ce8de44] {
1198
+ .serviceflow-nodeContent-desc[data-v-23f1c97b] {
1177
1199
  }
1178
- .el-divider--horizontal[data-v-1ce8de44] {
1200
+ .el-divider--horizontal[data-v-23f1c97b] {
1179
1201
  margin: 12px 0;
1180
1202
  }
1181
- .serviceflow-nodeView[data-v-1ce8de44] {
1203
+ .serviceflow-nodeView[data-v-23f1c97b] {
1182
1204
  border: 1px solid #5a90f9;
1183
- background: #eef3fe;
1184
- width: 180px;
1185
- min-height: 95px;
1186
- }
1187
- .serviceflow-nodeContent[data-v-1ce8de44] {
1188
- }
1189
-
1190
- .node-content[data-v-117d4091] {
1191
- width: 120px;
1192
- height: 44px;
1193
- background: #ffffff;
1194
- box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
1195
- border-radius: 2px 2px 2px 2px;
1205
+ background: #eef3fe;
1196
1206
  }
1197
- .content[data-v-117d4091] {
1198
- width: 28px;
1199
- height: 15px;
1200
- font-weight: 400;
1201
- font-size: 14px;
1202
- color: #333333;
1203
- line-height: 14px;
1204
- text-align: left;
1205
- font-style: normal;
1206
- text-transform: none;
1207
- padding: 5px 0px 4px 10px;
1208
- box-sizing: content-box;
1207
+ .serviceflow-nodeTitle[data-v-23f1c97b] {
1208
+ width: 80px;
1209
1209
  }
1210
1210
  .serviceflow-nodeView[data-v-08d9d211] {
1211
1211
  box-sizing: border-box;
@@ -1261,20 +1261,16 @@
1261
1261
  width: 80px;
1262
1262
  }
1263
1263
 
1264
- .el-select + .el-input[data-v-f20126f5] {
1264
+ .el-select + .el-input[data-v-b53b2895] {
1265
1265
  margin-left: 10px;
1266
1266
  }
1267
- .el-input + .el-input[data-v-f20126f5] {
1267
+ .el-input + .el-input[data-v-b53b2895] {
1268
1268
  margin-left: 10px;
1269
1269
  }
1270
- .el-input + .el-button[data-v-f20126f5] {
1270
+ .el-input + .el-button[data-v-b53b2895] {
1271
1271
  margin-left: 10px;
1272
1272
  }
1273
1273
 
1274
- .el-radio[data-v-1bbd6187] {
1275
- margin-right: 10px;
1276
- }
1277
-
1278
1274
  .el-radio[data-v-1ee0eb33] {
1279
1275
  margin-right: 10px;
1280
1276
  }
@@ -1282,6 +1278,10 @@
1282
1278
  margin-top: 0px;
1283
1279
  }
1284
1280
 
1281
+ .el-radio[data-v-1bbd6187] {
1282
+ margin-right: 10px;
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.26",
3
+ "version": "2.1.32",
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.69",
65
65
  "codemirror": "^6.0.1",
66
66
  "nprogress": "^0.2.0",
67
67
  "quill": "^2.0.2",