service-flow-designer 2.1.46 → 2.1.51

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.
@@ -51,7 +51,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
51
51
  onClose: close
52
52
  }, {
53
53
  default: withCtx(() => [
54
- createVNode(_sfc_main$1, { sql: __props.sql }, null, 8, ["sql"])
54
+ createVNode(_sfc_main$1, {
55
+ sql: __props.sql,
56
+ height: 400
57
+ }, null, 8, ["sql"])
55
58
  ]),
56
59
  _: 1
57
60
  }, 8, ["modelValue", "append-to-body"]);
@@ -1,4 +1,4 @@
1
- import { defineComponent, ref, onMounted, nextTick, openBlock, createElementBlock } from "vue";
1
+ import { defineComponent, ref, onMounted, nextTick, watch, openBlock, createElementBlock } from "vue";
2
2
  import { EditorView, basicSetup } from "codemirror";
3
3
  import { sql } from "@codemirror/lang-sql";
4
4
  import { Facet, EditorState } from "@codemirror/state";
@@ -32,6 +32,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
32
32
  loadEditor();
33
33
  });
34
34
  });
35
+ watch(
36
+ () => props.sql,
37
+ () => {
38
+ loadEditor();
39
+ }
40
+ );
35
41
  function loadEditor() {
36
42
  if (editor.value) {
37
43
  editor.value.destroy();
@@ -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-6fdf85a5"]]);
4
+ const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-43e78808"]]);
5
5
  export {
6
6
  config as default
7
7
  };
@@ -88,9 +88,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
88
88
  if (!props.properties.dataTable || props.properties.dataTable === serviceFlowStoreUtil.pageContext.tableName) {
89
89
  dataTableColumns.value = serviceFlowStoreUtil.pageContext.modelFields;
90
90
  } else {
91
- http.get("/mms/systems/getPublishVersionsByCode/" + props.properties.dataTableSystemCode).then((systems) => {
91
+ const baseAPI = window["$vueApp"].config.globalProperties.baseAPI;
92
+ http.get(baseAPI + "/mms/systems/getPublishVersionsByCode/" + props.properties.dataTableSystemCode).then((systems) => {
92
93
  http.get(
93
- "/mms/data-tables/table-columns?tableName=" + props.properties.dataTable + "&systemCode=" + props.properties.dataTableSystemCode + "&publishVersion=" + systems[systems.length - 1].publishVersion
94
+ baseAPI + "/mms/data-tables/table-columns?tableName=" + props.properties.dataTable + "&systemCode=" + props.properties.dataTableSystemCode + "&publishVersion=" + systems[systems.length - 1].publishVersion
94
95
  ).then((res) => {
95
96
  dataTableColumns.value = res;
96
97
  });
@@ -100,8 +101,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
100
101
  const rowDblclick = (row, column, event) => {
101
102
  row.$editing = true;
102
103
  };
103
- const handleDelete = (index, row, search) => {
104
- search.conditions.splice(index, 1);
104
+ const handleDelete = (index, row, type) => {
105
+ if (type === "sort") {
106
+ props.properties.sort.splice(index, 1);
107
+ } else if (type === "search") {
108
+ props.properties.search.conditions.splice(index, 1);
109
+ }
105
110
  };
106
111
  const addSortColumn = () => {
107
112
  if (!props.properties.sort) {
@@ -119,7 +124,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
119
124
  props.properties.dataTable = result.dataTable.name;
120
125
  props.properties.dataTableSystemCode = result.system.code;
121
126
  http.get(
122
- "/mms/data-tables/table-columns?tableName=" + result.dataTable.name + "&systemCode=" + result.system.code + "&publishVersion=" + result.system.publishVersion
127
+ window["$vueApp"].config.globalProperties.baseAPI + "/mms/data-tables/table-columns?tableName=" + result.dataTable.name + "&systemCode=" + result.system.code + "&publishVersion=" + result.system.publishVersion
123
128
  ).then((res) => {
124
129
  dataTableColumns.value = res;
125
130
  });
@@ -450,7 +455,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
450
455
  size: "small",
451
456
  icon: unref(Minus),
452
457
  circle: "",
453
- onClick: ($event) => handleDelete(scope.$index, scope.row, __props.properties.search)
458
+ onClick: ($event) => handleDelete(scope.$index, scope.row, "search")
454
459
  }, null, 8, ["icon", "onClick"])
455
460
  ]),
456
461
  _: 2
@@ -591,7 +596,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
591
596
  size: "small",
592
597
  icon: unref(Minus),
593
598
  circle: "",
594
- onClick: ($event) => handleDelete(scope.$index, scope.row, __props.properties.search)
599
+ onClick: ($event) => handleDelete(scope.$index, scope.row, "sort")
595
600
  }, null, 8, ["icon", "onClick"])
596
601
  ]),
597
602
  _: 2
@@ -123,10 +123,12 @@ function getNodeRuntimeObject(node, service) {
123
123
  tempNode.children = node.children;
124
124
  }
125
125
  tempNode.tos = [];
126
- const nextNodes = getNextNodeById(node, service.flow);
127
- nextNodes.forEach((nextNode) => {
128
- tempNode.tos.push({ code: nextNode.id });
129
- });
126
+ if (service.flow) {
127
+ const nextNodes = getNextNodeById(node, service.flow);
128
+ nextNodes.forEach((nextNode) => {
129
+ tempNode.tos.push({ code: nextNode.id });
130
+ });
131
+ }
130
132
  return tempNode;
131
133
  }
132
134
  export {
@@ -30,7 +30,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
30
30
  if (!props.service.returnValues) {
31
31
  props.service.returnValues = [];
32
32
  }
33
- const typeOptions = ["any", "array", "object"];
33
+ const typeOptions = ["any", "array", "object", "string", "number", "date"];
34
34
  let selEditRow = null;
35
35
  const rowDblclick = (row) => {
36
36
  row.$editing = true;
@@ -1,7 +1,7 @@
1
1
  import _sfc_main from "./service-list.vue2.js";
2
2
  import "./service-list.vue3.js";
3
3
  import _export_sfc from "../../_virtual/_plugin-vue_export-helper.js";
4
- const ServiceList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-286d914e"]]);
4
+ const ServiceList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-da8fc67a"]]);
5
5
  export {
6
6
  ServiceList as default
7
7
  };
@@ -1,22 +1,22 @@
1
- import { ElIcon, ElInput, ElCol, ElButton, ElTooltip, ElRow, ElTree, ElFormItem, ElDialog } from "element-plus/es";
1
+ import { ElIcon, ElInput, ElCol, ElRow, ElButton, ElTooltip, ElTree, ElFormItem, ElDialog } from "element-plus/es";
2
2
  import "element-plus/es/components/base/style/css";
3
3
  import "element-plus/es/components/dialog/style/css";
4
4
  import "element-plus/es/components/form-item/style/css";
5
5
  import "element-plus/es/components/tree/style/css";
6
- import "element-plus/es/components/row/style/css";
7
6
  import "element-plus/es/components/tooltip/style/css";
8
7
  import "element-plus/es/components/button/style/css";
8
+ import "element-plus/es/components/row/style/css";
9
9
  import "element-plus/es/components/col/style/css";
10
10
  import "element-plus/es/components/input/style/css";
11
11
  import "element-plus/es/components/icon/style/css";
12
- import { defineComponent, ref, openBlock, createElementBlock, createVNode, withCtx, unref, createElementVNode, createBlock, toDisplayString, createTextVNode, createCommentVNode, withDirectives, vShow, pushScopeId, popScopeId } from "vue";
12
+ import { defineComponent, ref, openBlock, createElementBlock, createVNode, withCtx, unref, createElementVNode, createTextVNode, createBlock, toDisplayString, createCommentVNode, withDirectives, vShow, pushScopeId, popScopeId } from "vue";
13
13
  import { Search, Plus, Menu, Promotion } from "@element-plus/icons-vue";
14
14
  import { v4 } from "uuid";
15
15
  import http from "agilebuilder-ui/src/utils/request";
16
16
  import { findServcieByCode } from "../common/util/node-util.js";
17
17
  import { useServiceFlowStore } from "../../stores/page-store.js";
18
18
  import { ElMessage, ElMessageBox } from "element-plus";
19
- const _withScopeId = (n) => (pushScopeId("data-v-286d914e"), n = n(), popScopeId(), n);
19
+ const _withScopeId = (n) => (pushScopeId("data-v-da8fc67a"), n = n(), popScopeId(), n);
20
20
  const _hoisted_1 = { class: "custom-tree-node" };
21
21
  const _hoisted_2 = { style: { "margin-left": "5px", "line-height": "14px", "font-size": "14px" } };
22
22
  const _hoisted_3 = { class: "dialog-footer" };
@@ -77,11 +77,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
77
77
  };
78
78
  const addRootServiceMenu = () => {
79
79
  editType.value = "MENU";
80
- createService();
80
+ createService("root");
81
81
  };
82
82
  const addServce = (type) => {
83
83
  editType.value = type;
84
- createService();
84
+ createService("leaf");
85
85
  };
86
86
  const editServiceBaseInfo = () => {
87
87
  editType.value = contextMenuData.value.type;
@@ -91,18 +91,89 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
91
91
  }
92
92
  dialogVisible.value = true;
93
93
  };
94
- const createService = () => {
94
+ const createService = (addType) => {
95
95
  serviceFlow.value = {
96
96
  code: v4(),
97
97
  name: "",
98
98
  customCode: "",
99
99
  type: editType.value
100
100
  };
101
- if (contextMenuData.value.id) {
101
+ if (contextMenuData.value.id && addType === "leaf") {
102
102
  serviceFlow.value.parentCode = contextMenuData.value.code;
103
103
  }
104
104
  dialogVisible.value = true;
105
105
  };
106
+ const selectIds = ref([]);
107
+ const handleCheckChange = (data, checked, indeterminate) => {
108
+ if (checked) {
109
+ selectIds.value.push(data.id);
110
+ if (data.children && data.children.length > 0) {
111
+ data.children.forEach((item) => {
112
+ if (selectIds.value.indexOf(item.id) == -1) {
113
+ selectIds.value.push(item.id);
114
+ }
115
+ });
116
+ }
117
+ } else {
118
+ selectIds.value.splice(selectIds.value.indexOf(data.id), 1);
119
+ if (data.children && data.children.length > 0) {
120
+ data.children.forEach((item) => {
121
+ let index = selectIds.value.indexOf(item.id);
122
+ if (index > -1) {
123
+ selectIds.value.splice(index, 1);
124
+ }
125
+ });
126
+ }
127
+ }
128
+ };
129
+ const systemCode = serviceFlowStoreUtil.pageContext.systemCode;
130
+ const publishVersion = serviceFlowStoreUtil.pageContext.systemVersion;
131
+ const derive = () => {
132
+ if (selectIds.value.length > 0) {
133
+ http({
134
+ url: window["$vueApp"].config.globalProperties.baseAPI + `/component/super-page-design/service-flow/export/${systemCode}/${publishVersion}`,
135
+ method: "post",
136
+ data: selectIds.value,
137
+ responseType: "blob"
138
+ }).then((res) => {
139
+ let blob = new Blob([res], {
140
+ type: "application/zip"
141
+ });
142
+ let link = document.createElement("a");
143
+ link.href = window.URL.createObjectURL(blob);
144
+ link.download = "服务编排.zip";
145
+ link.click();
146
+ window.URL.revokeObjectURL(link.href);
147
+ });
148
+ } else {
149
+ ElMessage.warning("请选择服务或菜单");
150
+ }
151
+ };
152
+ const processFile = ref(null);
153
+ const selectDataFile = (command) => {
154
+ processFile.value.click();
155
+ };
156
+ const importPage = () => {
157
+ const fileObj = processFile.value.files[0];
158
+ if (fileObj) {
159
+ processFile.value.value = null;
160
+ const param = new FormData();
161
+ param.append("multipartFile", fileObj);
162
+ http({
163
+ url: window["$vueApp"].config.globalProperties.baseAPI + `/component/super-page-design/service-flow/import/${systemCode}/${publishVersion}`,
164
+ method: "post",
165
+ headers: { "Content-Type": "multipart/form-data" },
166
+ data: param
167
+ }).then(() => {
168
+ ElMessage.success("导入成功");
169
+ emits("load-tree-data");
170
+ }).catch((error) => {
171
+ console.log("error==", error);
172
+ });
173
+ } else {
174
+ ElMessage.warning("未选择文件");
175
+ }
176
+ };
106
177
  const saveServiceBaseInfo = () => {
107
178
  if (!serviceFlow.value.name) {
108
179
  ElMessage.warning("名称不能为空");
@@ -198,16 +269,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
198
269
  const _component_el_icon = ElIcon;
199
270
  const _component_el_input = ElInput;
200
271
  const _component_el_col = ElCol;
272
+ const _component_el_row = ElRow;
201
273
  const _component_el_button = ElButton;
202
274
  const _component_el_tooltip = ElTooltip;
203
- const _component_el_row = ElRow;
204
275
  const _component_el_tree = ElTree;
205
276
  const _component_el_form_item = ElFormItem;
206
277
  const _component_el_dialog = ElDialog;
207
278
  return openBlock(), createElementBlock("div", null, [
208
- createVNode(_component_el_row, null, {
279
+ createVNode(_component_el_row, { style: { "margin-bottom": "10px" } }, {
209
280
  default: withCtx(() => [
210
- createVNode(_component_el_col, { span: 18 }, {
281
+ createVNode(_component_el_col, { span: 24 }, {
211
282
  default: withCtx(() => [
212
283
  createVNode(_component_el_input, {
213
284
  modelValue: search.value,
@@ -226,12 +297,59 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
226
297
  }, 8, ["modelValue"])
227
298
  ]),
228
299
  _: 1
229
- }),
230
- createVNode(_component_el_col, {
231
- span: 6,
232
- style: { "text-align": "right" }
233
- }, {
300
+ })
301
+ ]),
302
+ _: 1
303
+ }),
304
+ createVNode(_component_el_row, null, {
305
+ default: withCtx(() => [
306
+ createVNode(_component_el_col, { span: 24 }, {
234
307
  default: withCtx(() => [
308
+ createVNode(_component_el_tooltip, {
309
+ effect: "dark",
310
+ content: "导入",
311
+ placement: "top"
312
+ }, {
313
+ default: withCtx(() => [
314
+ createVNode(_component_el_button, {
315
+ type: "primary",
316
+ onClick: selectDataFile
317
+ }, {
318
+ default: withCtx(() => [
319
+ createElementVNode("input", {
320
+ ref_key: "processFile",
321
+ ref: processFile,
322
+ accept: ".zip",
323
+ name: "processFile",
324
+ style: { "display": "none" },
325
+ type: "file",
326
+ onChange: importPage
327
+ }, null, 544),
328
+ createTextVNode(" 导入 ")
329
+ ]),
330
+ _: 1
331
+ })
332
+ ]),
333
+ _: 1
334
+ }),
335
+ createVNode(_component_el_tooltip, {
336
+ effect: "dark",
337
+ content: "导出",
338
+ placement: "top"
339
+ }, {
340
+ default: withCtx(() => [
341
+ createVNode(_component_el_button, {
342
+ type: "primary",
343
+ onClick: derive
344
+ }, {
345
+ default: withCtx(() => [
346
+ createTextVNode("导出")
347
+ ]),
348
+ _: 1
349
+ })
350
+ ]),
351
+ _: 1
352
+ }),
235
353
  createVNode(_component_el_tooltip, {
236
354
  effect: "dark",
237
355
  content: "添加根菜单",
@@ -257,13 +375,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
257
375
  ref_key: "serviceTreeRef",
258
376
  ref: serviceTreeRef,
259
377
  data: __props.serviceTreeData,
378
+ "node-key": "id",
260
379
  props: treeProps,
380
+ "show-checkbox": "",
261
381
  "expand-on-click-node": false,
262
382
  "default-expand-all": true,
263
- "check-strictly": true,
264
383
  "highlight-current": "",
265
384
  onNodeClick: nodeClick,
266
- onNodeContextmenu: nodeContextmenu
385
+ onNodeContextmenu: nodeContextmenu,
386
+ onCheckChange: handleCheckChange
267
387
  }, {
268
388
  default: withCtx(({ node, data }) => [
269
389
  createElementVNode("span", _hoisted_1, [
package/dist/es/style.css CHANGED
@@ -167,79 +167,23 @@
167
167
  border-color: transparent transparent var(--el-skeleton-color) transparent;
168
168
  }
169
169
 
170
- .editorTool[data-v-d55ab098] {
171
- margin-left: auto;
172
- }
173
- .editorOption[data-v-d55ab098] {
174
- margin-right: 10px;
175
- cursor: pointer;
176
- }
177
- .pppp[data-v-d55ab098] {
178
- display: flex; /* 使用Flex布局 */
179
- justify-content: flex-start;
180
- align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
181
- }
182
-
183
170
  .el-alert + .el-form-item[data-v-a158f309] {
184
171
  margin-top: 10px;
185
172
  }
186
173
 
187
- [data-v-6fdf85a5] .el-radio {
188
- margin: 0;
189
- }
190
- .el-radio + .el-radio[data-v-6fdf85a5] {
191
- margin-left: 10px;
192
- }
193
-
194
- .el-alert + .el-table[data-v-028fb838] {
195
- margin-top: 10px;
196
- }
197
- .el-table + .el-alert[data-v-028fb838] {
198
- margin: 10px 0;
199
- }
200
-
201
- .editorTool[data-v-684c1f08] {
174
+ .editorTool[data-v-d55ab098] {
202
175
  margin-left: auto;
203
176
  }
204
- .editorOption[data-v-684c1f08] {
177
+ .editorOption[data-v-d55ab098] {
205
178
  margin-right: 10px;
206
179
  cursor: pointer;
207
180
  }
208
- .pppp[data-v-684c1f08] {
181
+ .pppp[data-v-d55ab098] {
209
182
  display: flex; /* 使用Flex布局 */
210
183
  justify-content: flex-start;
211
184
  align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
212
185
  }
213
186
 
214
- .el-alert + .el-table[data-v-82e0dfef] {
215
- margin-top: 10px;
216
- }
217
- .el-alert + .el-form-item[data-v-82e0dfef] {
218
- margin-top: 10px;
219
- }
220
-
221
- .el-dialog__wrapper[data-v-7a4cbbaf] {
222
- overflow: hidden !important;
223
- padding-right: 0 !important;
224
- }
225
-
226
- .el-alert + .el-table[data-v-e27c4c1e] {
227
- margin-top: 10px;
228
- }
229
- .el-table + .el-alert[data-v-e27c4c1e] {
230
- margin: 10px 0;
231
- }
232
- .el-alert + .el-form-item[data-v-e27c4c1e] {
233
- margin-top: 10px;
234
- }
235
-
236
- [data-v-dac15197] .el-radio {
237
- margin: 0;
238
- }
239
- .el-radio + .el-radio[data-v-dac15197] {
240
- margin-left: 10px;
241
- }
242
-
243
187
  .el-alert + .el-table[data-v-d978e7dc] {
244
188
  margin-top: 10px;
245
189
  }
@@ -250,54 +194,11 @@
250
194
  margin-top: 10px;
251
195
  }
252
196
 
253
- .el-tabs + .el-alert[data-v-08737620] {
197
+ .el-alert + .el-table[data-v-82e0dfef] {
254
198
  margin-top: 10px;
255
199
  }
256
- .el-alert + .el-form-item[data-v-08737620] {
257
- margin-top: 10px;
258
- }
259
-
260
- .el-alert + .el-form-item[data-v-32875028] {
200
+ .el-alert + .el-form-item[data-v-82e0dfef] {
261
201
  margin-top: 10px;
262
- }
263
- .el-alert + .el-table[data-v-32875028] {
264
- margin: 10px 0;
265
- }
266
-
267
- [data-v-286d914e] .el-table__row {
268
- cursor: pointer;
269
- }
270
- /** 右键菜单样式 */
271
- .context-menu[data-v-286d914e] {
272
- position: absolute;
273
- background: #fff;
274
- z-index: 999;
275
- margin: 5;
276
- padding: 8px 8px;
277
- box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
278
- border: 1px solid #bbbbbb;
279
- border-radius: 10px;
280
- font-size: 14px;
281
- }
282
- .context-menu li[data-v-286d914e] {
283
- list-style-type: none;
284
- min-width: 75px;
285
- line-height: 28px;
286
- text-align: left;
287
- border-radius: 5px;
288
- padding-left: 5px;
289
- cursor: pointer;
290
- }
291
- .context-menu li[data-v-286d914e]:hover {
292
- background: #0165e1;
293
- color: #fff;
294
- }
295
- /** 右键菜单样式 */
296
- .custom-tree-node[data-v-286d914e] {
297
- font-size: 14px;
298
- padding-right: 8px;
299
- display: flex; /* 使用Flex布局 */
300
- align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
301
202
  }
302
203
  .serviceflow-control-item[data-v-a2bd7452] {
303
204
  top: -5px;
@@ -430,6 +331,31 @@
430
331
  outline: none;
431
332
  margin-left: 50px;
432
333
  }
334
+
335
+ .editorTool[data-v-684c1f08] {
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
+ }
433
359
  .serviceflow-attr-base-content[data-v-8bad091d] {
434
360
  background: #ffffff;
435
361
  box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
@@ -507,6 +433,80 @@
507
433
  position: static;
508
434
  }
509
435
 
436
+ .el-alert + .el-form-item[data-v-32875028] {
437
+ margin-top: 10px;
438
+ }
439
+ .el-alert + .el-table[data-v-32875028] {
440
+ margin: 10px 0;
441
+ }
442
+
443
+ [data-v-da8fc67a] .el-table__row {
444
+ cursor: pointer;
445
+ }
446
+ /** 右键菜单样式 */
447
+ .context-menu[data-v-da8fc67a] {
448
+ position: absolute;
449
+ background: #fff;
450
+ z-index: 999;
451
+ margin: 5;
452
+ padding: 8px 8px;
453
+ box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
454
+ border: 1px solid #bbbbbb;
455
+ border-radius: 10px;
456
+ font-size: 14px;
457
+ }
458
+ .context-menu li[data-v-da8fc67a] {
459
+ list-style-type: none;
460
+ min-width: 75px;
461
+ line-height: 28px;
462
+ text-align: left;
463
+ border-radius: 5px;
464
+ padding-left: 5px;
465
+ cursor: pointer;
466
+ }
467
+ .context-menu li[data-v-da8fc67a]:hover {
468
+ background: #0165e1;
469
+ color: #fff;
470
+ }
471
+ /** 右键菜单样式 */
472
+ .custom-tree-node[data-v-da8fc67a] {
473
+ font-size: 14px;
474
+ padding-right: 8px;
475
+ display: flex; /* 使用Flex布局 */
476
+ align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
477
+ }
478
+
479
+ .el-tabs + .el-alert[data-v-08737620] {
480
+ margin-top: 10px;
481
+ }
482
+ .el-alert + .el-form-item[data-v-08737620] {
483
+ margin-top: 10px;
484
+ }
485
+
486
+ .el-alert + .el-table[data-v-028fb838] {
487
+ margin-top: 10px;
488
+ }
489
+ .el-table + .el-alert[data-v-028fb838] {
490
+ margin: 10px 0;
491
+ }
492
+
493
+ [data-v-dac15197] .el-radio {
494
+ margin: 0;
495
+ }
496
+ .el-radio + .el-radio[data-v-dac15197] {
497
+ margin-left: 10px;
498
+ }
499
+
500
+ .el-alert + .el-table[data-v-e27c4c1e] {
501
+ margin-top: 10px;
502
+ }
503
+ .el-table + .el-alert[data-v-e27c4c1e] {
504
+ margin: 10px 0;
505
+ }
506
+ .el-alert + .el-form-item[data-v-e27c4c1e] {
507
+ margin-top: 10px;
508
+ }
509
+
510
510
  .node-content[data-v-669b618f] {
511
511
  width: 120px;
512
512
  height: 44px;
@@ -527,7 +527,7 @@
527
527
  padding: 5px 0px 4px 10px;
528
528
  box-sizing: content-box;
529
529
  }
530
- .serviceflow-nodeView[data-v-23f1c97b] {
530
+ .serviceflow-nodeView[data-v-91a913ff] {
531
531
  box-sizing: border-box;
532
532
  margin: 10px 10px;
533
533
  width: 180px;
@@ -536,7 +536,7 @@
536
536
  border-radius: 2px 2px 2px 2px;
537
537
  padding: 20px 10px;
538
538
  }
539
- .serviceflow-nodeTitle[data-v-23f1c97b] {
539
+ .serviceflow-nodeTitle[data-v-91a913ff] {
540
540
  width: 90px;
541
541
  height: 15px;
542
542
  font-weight: 400;
@@ -552,7 +552,7 @@
552
552
  overflow: hidden; /* 隐藏超出div宽度的文本 */
553
553
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
554
554
  }
555
- .serviceflow-nodeContent[data-v-23f1c97b] {
555
+ .serviceflow-nodeContent[data-v-91a913ff] {
556
556
  /* width: 100%; */
557
557
  height: 15px;
558
558
  font-weight: 400;
@@ -568,19 +568,19 @@
568
568
  overflow: hidden; /* 隐藏超出div宽度的文本 */
569
569
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
570
570
  }
571
- .serviceflow-nodeContent-desc[data-v-23f1c97b] {
571
+ .serviceflow-nodeContent-desc[data-v-91a913ff] {
572
572
  }
573
- .el-divider--horizontal[data-v-23f1c97b] {
573
+ .el-divider--horizontal[data-v-91a913ff] {
574
574
  margin: 12px 0;
575
575
  }
576
- .serviceflow-nodeView[data-v-23f1c97b] {
576
+ .serviceflow-nodeView[data-v-91a913ff] {
577
577
  border: 1px solid #5a90f9;
578
578
  background: #eef3fe;
579
579
  }
580
- .serviceflow-nodeTitle[data-v-23f1c97b] {
580
+ .serviceflow-nodeTitle[data-v-91a913ff] {
581
581
  width: 80px;
582
582
  }
583
- .serviceflow-nodeView[data-v-4d28d77b] {
583
+ .serviceflow-nodeView[data-v-1ce8de44] {
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-4d28d77b] {
592
+ .serviceflow-nodeTitle[data-v-1ce8de44] {
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-4d28d77b] {
608
+ .serviceflow-nodeContent[data-v-1ce8de44] {
609
609
  /* width: 100%; */
610
610
  height: 15px;
611
611
  font-weight: 400;
@@ -621,19 +621,20 @@
621
621
  overflow: hidden; /* 隐藏超出div宽度的文本 */
622
622
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
623
623
  }
624
- .serviceflow-nodeContent-desc[data-v-4d28d77b] {
624
+ .serviceflow-nodeContent-desc[data-v-1ce8de44] {
625
625
  }
626
- .el-divider--horizontal[data-v-4d28d77b] {
626
+ .el-divider--horizontal[data-v-1ce8de44] {
627
627
  margin: 12px 0;
628
628
  }
629
- .serviceflow-nodeView[data-v-4d28d77b] {
629
+ .serviceflow-nodeView[data-v-1ce8de44] {
630
630
  border: 1px solid #5a90f9;
631
- background: #eef3fe;
631
+ background: #eef3fe;
632
+ width: 180px;
633
+ min-height: 95px;
632
634
  }
633
- .serviceflow-nodeTitle[data-v-4d28d77b] {
634
- width: 80px;
635
+ .serviceflow-nodeContent[data-v-1ce8de44] {
635
636
  }
636
- .serviceflow-nodeView[data-v-42ce3f17] {
637
+ .serviceflow-nodeView[data-v-1519c141] {
637
638
  box-sizing: border-box;
638
639
  margin: 10px 10px;
639
640
  width: 180px;
@@ -642,7 +643,7 @@
642
643
  border-radius: 2px 2px 2px 2px;
643
644
  padding: 20px 10px;
644
645
  }
645
- .serviceflow-nodeTitle[data-v-42ce3f17] {
646
+ .serviceflow-nodeTitle[data-v-1519c141] {
646
647
  width: 90px;
647
648
  height: 15px;
648
649
  font-weight: 400;
@@ -658,7 +659,7 @@
658
659
  overflow: hidden; /* 隐藏超出div宽度的文本 */
659
660
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
660
661
  }
661
- .serviceflow-nodeContent[data-v-42ce3f17] {
662
+ .serviceflow-nodeContent[data-v-1519c141] {
662
663
  /* width: 100%; */
663
664
  height: 15px;
664
665
  font-weight: 400;
@@ -674,40 +675,19 @@
674
675
  overflow: hidden; /* 隐藏超出div宽度的文本 */
675
676
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
676
677
  }
677
- .serviceflow-nodeContent-desc[data-v-42ce3f17] {
678
+ .serviceflow-nodeContent-desc[data-v-1519c141] {
678
679
  }
679
- .el-divider--horizontal[data-v-42ce3f17] {
680
+ .el-divider--horizontal[data-v-1519c141] {
680
681
  margin: 12px 0;
681
682
  }
682
- .serviceflow-nodeView[data-v-42ce3f17] {
683
+ .serviceflow-nodeView[data-v-1519c141] {
683
684
  border: 1px solid #5a90f9;
684
685
  background: #eef3fe;
685
686
  }
686
- .serviceflow-nodeTitle[data-v-42ce3f17] {
687
+ .serviceflow-nodeTitle[data-v-1519c141] {
687
688
  width: 80px;
688
689
  }
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-08d9d211] {
690
+ .serviceflow-nodeView[data-v-b04d3f8b] {
711
691
  box-sizing: border-box;
712
692
  margin: 10px 10px;
713
693
  width: 180px;
@@ -716,7 +696,7 @@
716
696
  border-radius: 2px 2px 2px 2px;
717
697
  padding: 20px 10px;
718
698
  }
719
- .serviceflow-nodeTitle[data-v-08d9d211] {
699
+ .serviceflow-nodeTitle[data-v-b04d3f8b] {
720
700
  width: 90px;
721
701
  height: 15px;
722
702
  font-weight: 400;
@@ -732,7 +712,7 @@
732
712
  overflow: hidden; /* 隐藏超出div宽度的文本 */
733
713
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
734
714
  }
735
- .serviceflow-nodeContent[data-v-08d9d211] {
715
+ .serviceflow-nodeContent[data-v-b04d3f8b] {
736
716
  /* width: 100%; */
737
717
  height: 15px;
738
718
  font-weight: 400;
@@ -748,19 +728,40 @@
748
728
  overflow: hidden; /* 隐藏超出div宽度的文本 */
749
729
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
750
730
  }
751
- .serviceflow-nodeContent-desc[data-v-08d9d211] {
731
+ .serviceflow-nodeContent-desc[data-v-b04d3f8b] {
752
732
  }
753
- .el-divider--horizontal[data-v-08d9d211] {
733
+ .el-divider--horizontal[data-v-b04d3f8b] {
754
734
  margin: 12px 0;
755
735
  }
756
- .serviceflow-nodeView[data-v-08d9d211] {
736
+ .serviceflow-nodeView[data-v-b04d3f8b] {
757
737
  border: 1px solid #5a90f9;
758
738
  background: #eef3fe;
759
739
  }
760
- .serviceflow-nodeTitle[data-v-08d9d211] {
740
+ .serviceflow-nodeTitle[data-v-b04d3f8b] {
761
741
  width: 80px;
762
742
  }
763
- .serviceflow-nodeView[data-v-1ce8de44] {
743
+
744
+ .node-content[data-v-117d4091] {
745
+ width: 120px;
746
+ height: 44px;
747
+ background: #ffffff;
748
+ box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
749
+ border-radius: 2px 2px 2px 2px;
750
+ }
751
+ .content[data-v-117d4091] {
752
+ width: 28px;
753
+ height: 15px;
754
+ font-weight: 400;
755
+ font-size: 14px;
756
+ color: #333333;
757
+ line-height: 14px;
758
+ text-align: left;
759
+ font-style: normal;
760
+ text-transform: none;
761
+ padding: 5px 0px 4px 10px;
762
+ box-sizing: content-box;
763
+ }
764
+ .serviceflow-nodeView[data-v-96d149c1] {
764
765
  box-sizing: border-box;
765
766
  margin: 10px 10px;
766
767
  width: 180px;
@@ -769,7 +770,7 @@
769
770
  border-radius: 2px 2px 2px 2px;
770
771
  padding: 20px 10px;
771
772
  }
772
- .serviceflow-nodeTitle[data-v-1ce8de44] {
773
+ .serviceflow-nodeTitle[data-v-96d149c1] {
773
774
  width: 90px;
774
775
  height: 15px;
775
776
  font-weight: 400;
@@ -785,7 +786,7 @@
785
786
  overflow: hidden; /* 隐藏超出div宽度的文本 */
786
787
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
787
788
  }
788
- .serviceflow-nodeContent[data-v-1ce8de44] {
789
+ .serviceflow-nodeContent[data-v-96d149c1] {
789
790
  /* width: 100%; */
790
791
  height: 15px;
791
792
  font-weight: 400;
@@ -801,20 +802,19 @@
801
802
  overflow: hidden; /* 隐藏超出div宽度的文本 */
802
803
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
803
804
  }
804
- .serviceflow-nodeContent-desc[data-v-1ce8de44] {
805
+ .serviceflow-nodeContent-desc[data-v-96d149c1] {
805
806
  }
806
- .el-divider--horizontal[data-v-1ce8de44] {
807
+ .el-divider--horizontal[data-v-96d149c1] {
807
808
  margin: 12px 0;
808
809
  }
809
- .serviceflow-nodeView[data-v-1ce8de44] {
810
+ .serviceflow-nodeView[data-v-96d149c1] {
810
811
  border: 1px solid #5a90f9;
811
- background: #eef3fe;
812
- width: 180px;
813
- min-height: 95px;
812
+ background: #eef3fe;
814
813
  }
815
- .serviceflow-nodeContent[data-v-1ce8de44] {
814
+ .serviceflow-nodeTitle[data-v-96d149c1] {
815
+ width: 80px;
816
816
  }
817
- .serviceflow-nodeView[data-v-3c23a172] {
817
+ .serviceflow-nodeView[data-v-418f1558] {
818
818
  box-sizing: border-box;
819
819
  margin: 10px 10px;
820
820
  width: 180px;
@@ -823,7 +823,7 @@
823
823
  border-radius: 2px 2px 2px 2px;
824
824
  padding: 20px 10px;
825
825
  }
826
- .serviceflow-nodeTitle[data-v-3c23a172] {
826
+ .serviceflow-nodeTitle[data-v-418f1558] {
827
827
  width: 90px;
828
828
  height: 15px;
829
829
  font-weight: 400;
@@ -839,7 +839,7 @@
839
839
  overflow: hidden; /* 隐藏超出div宽度的文本 */
840
840
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
841
841
  }
842
- .serviceflow-nodeContent[data-v-3c23a172] {
842
+ .serviceflow-nodeContent[data-v-418f1558] {
843
843
  /* width: 100%; */
844
844
  height: 15px;
845
845
  font-weight: 400;
@@ -855,20 +855,20 @@
855
855
  overflow: hidden; /* 隐藏超出div宽度的文本 */
856
856
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
857
857
  }
858
- .serviceflow-nodeContent-desc[data-v-3c23a172] {
858
+ .serviceflow-nodeContent-desc[data-v-418f1558] {
859
859
  }
860
- .el-divider--horizontal[data-v-3c23a172] {
860
+ .el-divider--horizontal[data-v-418f1558] {
861
861
  margin: 12px 0;
862
862
  }
863
- .serviceflow-nodeView[data-v-3c23a172] {
863
+ .serviceflow-nodeView[data-v-418f1558] {
864
864
  border: 1px solid #5a90f9;
865
865
  background: #eef3fe;
866
866
  width: 180px;
867
867
  min-height: 95px;
868
868
  }
869
- .serviceflow-nodeContent[data-v-3c23a172] {
869
+ .serviceflow-nodeContent[data-v-418f1558] {
870
870
  }
871
- .serviceflow-nodeView[data-v-418f1558] {
871
+ .serviceflow-nodeView[data-v-3c23a172] {
872
872
  box-sizing: border-box;
873
873
  margin: 10px 10px;
874
874
  width: 180px;
@@ -877,7 +877,7 @@
877
877
  border-radius: 2px 2px 2px 2px;
878
878
  padding: 20px 10px;
879
879
  }
880
- .serviceflow-nodeTitle[data-v-418f1558] {
880
+ .serviceflow-nodeTitle[data-v-3c23a172] {
881
881
  width: 90px;
882
882
  height: 15px;
883
883
  font-weight: 400;
@@ -893,7 +893,7 @@
893
893
  overflow: hidden; /* 隐藏超出div宽度的文本 */
894
894
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
895
895
  }
896
- .serviceflow-nodeContent[data-v-418f1558] {
896
+ .serviceflow-nodeContent[data-v-3c23a172] {
897
897
  /* width: 100%; */
898
898
  height: 15px;
899
899
  font-weight: 400;
@@ -909,20 +909,20 @@
909
909
  overflow: hidden; /* 隐藏超出div宽度的文本 */
910
910
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
911
911
  }
912
- .serviceflow-nodeContent-desc[data-v-418f1558] {
912
+ .serviceflow-nodeContent-desc[data-v-3c23a172] {
913
913
  }
914
- .el-divider--horizontal[data-v-418f1558] {
914
+ .el-divider--horizontal[data-v-3c23a172] {
915
915
  margin: 12px 0;
916
916
  }
917
- .serviceflow-nodeView[data-v-418f1558] {
917
+ .serviceflow-nodeView[data-v-3c23a172] {
918
918
  border: 1px solid #5a90f9;
919
919
  background: #eef3fe;
920
920
  width: 180px;
921
921
  min-height: 95px;
922
922
  }
923
- .serviceflow-nodeContent[data-v-418f1558] {
923
+ .serviceflow-nodeContent[data-v-3c23a172] {
924
924
  }
925
- .serviceflow-nodeView[data-v-6b34f36c] {
925
+ .serviceflow-nodeView[data-v-42ce3f17] {
926
926
  box-sizing: border-box;
927
927
  margin: 10px 10px;
928
928
  width: 180px;
@@ -931,7 +931,7 @@
931
931
  border-radius: 2px 2px 2px 2px;
932
932
  padding: 20px 10px;
933
933
  }
934
- .serviceflow-nodeTitle[data-v-6b34f36c] {
934
+ .serviceflow-nodeTitle[data-v-42ce3f17] {
935
935
  width: 90px;
936
936
  height: 15px;
937
937
  font-weight: 400;
@@ -947,7 +947,7 @@
947
947
  overflow: hidden; /* 隐藏超出div宽度的文本 */
948
948
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
949
949
  }
950
- .serviceflow-nodeContent[data-v-6b34f36c] {
950
+ .serviceflow-nodeContent[data-v-42ce3f17] {
951
951
  /* width: 100%; */
952
952
  height: 15px;
953
953
  font-weight: 400;
@@ -963,19 +963,39 @@
963
963
  overflow: hidden; /* 隐藏超出div宽度的文本 */
964
964
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
965
965
  }
966
- .serviceflow-nodeContent-desc[data-v-6b34f36c] {
966
+ .serviceflow-nodeContent-desc[data-v-42ce3f17] {
967
967
  }
968
- .el-divider--horizontal[data-v-6b34f36c] {
968
+ .el-divider--horizontal[data-v-42ce3f17] {
969
969
  margin: 12px 0;
970
970
  }
971
- .serviceflow-nodeView[data-v-6b34f36c] {
971
+ .serviceflow-nodeView[data-v-42ce3f17] {
972
972
  border: 1px solid #5a90f9;
973
973
  background: #eef3fe;
974
974
  }
975
- .serviceflow-nodeTitle[data-v-6b34f36c] {
975
+ .serviceflow-nodeTitle[data-v-42ce3f17] {
976
976
  width: 80px;
977
977
  }
978
- .serviceflow-nodeView[data-v-91a913ff] {
978
+
979
+ .aaa[data-v-8bd72b80] {
980
+ width: 300px;
981
+ height: 200px;
982
+ background: #ffffff;
983
+ box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
984
+ border-radius: 2px 2px 2px 2px;
985
+ }
986
+ .content[data-v-8bd72b80] {
987
+ width: 28px;
988
+ height: 15px;
989
+ font-weight: 400;
990
+ font-size: 14px;
991
+ color: #333333;
992
+ line-height: 14px;
993
+ text-align: left;
994
+ font-style: normal;
995
+ text-transform: none;
996
+ padding: 5px 0px 4px 10px;
997
+ }
998
+ .serviceflow-nodeView[data-v-6b34f36c] {
979
999
  box-sizing: border-box;
980
1000
  margin: 10px 10px;
981
1001
  width: 180px;
@@ -984,7 +1004,7 @@
984
1004
  border-radius: 2px 2px 2px 2px;
985
1005
  padding: 20px 10px;
986
1006
  }
987
- .serviceflow-nodeTitle[data-v-91a913ff] {
1007
+ .serviceflow-nodeTitle[data-v-6b34f36c] {
988
1008
  width: 90px;
989
1009
  height: 15px;
990
1010
  font-weight: 400;
@@ -1000,7 +1020,7 @@
1000
1020
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1001
1021
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1002
1022
  }
1003
- .serviceflow-nodeContent[data-v-91a913ff] {
1023
+ .serviceflow-nodeContent[data-v-6b34f36c] {
1004
1024
  /* width: 100%; */
1005
1025
  height: 15px;
1006
1026
  font-weight: 400;
@@ -1016,19 +1036,19 @@
1016
1036
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1017
1037
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1018
1038
  }
1019
- .serviceflow-nodeContent-desc[data-v-91a913ff] {
1039
+ .serviceflow-nodeContent-desc[data-v-6b34f36c] {
1020
1040
  }
1021
- .el-divider--horizontal[data-v-91a913ff] {
1041
+ .el-divider--horizontal[data-v-6b34f36c] {
1022
1042
  margin: 12px 0;
1023
1043
  }
1024
- .serviceflow-nodeView[data-v-91a913ff] {
1044
+ .serviceflow-nodeView[data-v-6b34f36c] {
1025
1045
  border: 1px solid #5a90f9;
1026
1046
  background: #eef3fe;
1027
1047
  }
1028
- .serviceflow-nodeTitle[data-v-91a913ff] {
1048
+ .serviceflow-nodeTitle[data-v-6b34f36c] {
1029
1049
  width: 80px;
1030
1050
  }
1031
- .serviceflow-nodeView[data-v-9770119b] {
1051
+ .serviceflow-nodeView[data-v-4d28d77b] {
1032
1052
  box-sizing: border-box;
1033
1053
  margin: 10px 10px;
1034
1054
  width: 180px;
@@ -1037,7 +1057,7 @@
1037
1057
  border-radius: 2px 2px 2px 2px;
1038
1058
  padding: 20px 10px;
1039
1059
  }
1040
- .serviceflow-nodeTitle[data-v-9770119b] {
1060
+ .serviceflow-nodeTitle[data-v-4d28d77b] {
1041
1061
  width: 90px;
1042
1062
  height: 15px;
1043
1063
  font-weight: 400;
@@ -1053,7 +1073,7 @@
1053
1073
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1054
1074
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1055
1075
  }
1056
- .serviceflow-nodeContent[data-v-9770119b] {
1076
+ .serviceflow-nodeContent[data-v-4d28d77b] {
1057
1077
  /* width: 100%; */
1058
1078
  height: 15px;
1059
1079
  font-weight: 400;
@@ -1069,19 +1089,19 @@
1069
1089
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1070
1090
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1071
1091
  }
1072
- .serviceflow-nodeContent-desc[data-v-9770119b] {
1092
+ .serviceflow-nodeContent-desc[data-v-4d28d77b] {
1073
1093
  }
1074
- .el-divider--horizontal[data-v-9770119b] {
1094
+ .el-divider--horizontal[data-v-4d28d77b] {
1075
1095
  margin: 12px 0;
1076
1096
  }
1077
- .serviceflow-nodeView[data-v-9770119b] {
1097
+ .serviceflow-nodeView[data-v-4d28d77b] {
1078
1098
  border: 1px solid #5a90f9;
1079
1099
  background: #eef3fe;
1080
1100
  }
1081
- .serviceflow-nodeTitle[data-v-9770119b] {
1101
+ .serviceflow-nodeTitle[data-v-4d28d77b] {
1082
1102
  width: 80px;
1083
1103
  }
1084
- .serviceflow-nodeView[data-v-b04d3f8b] {
1104
+ .serviceflow-nodeView[data-v-23f1c97b] {
1085
1105
  box-sizing: border-box;
1086
1106
  margin: 10px 10px;
1087
1107
  width: 180px;
@@ -1090,7 +1110,7 @@
1090
1110
  border-radius: 2px 2px 2px 2px;
1091
1111
  padding: 20px 10px;
1092
1112
  }
1093
- .serviceflow-nodeTitle[data-v-b04d3f8b] {
1113
+ .serviceflow-nodeTitle[data-v-23f1c97b] {
1094
1114
  width: 90px;
1095
1115
  height: 15px;
1096
1116
  font-weight: 400;
@@ -1106,7 +1126,7 @@
1106
1126
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1107
1127
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1108
1128
  }
1109
- .serviceflow-nodeContent[data-v-b04d3f8b] {
1129
+ .serviceflow-nodeContent[data-v-23f1c97b] {
1110
1130
  /* width: 100%; */
1111
1131
  height: 15px;
1112
1132
  font-weight: 400;
@@ -1122,19 +1142,19 @@
1122
1142
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1123
1143
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1124
1144
  }
1125
- .serviceflow-nodeContent-desc[data-v-b04d3f8b] {
1145
+ .serviceflow-nodeContent-desc[data-v-23f1c97b] {
1126
1146
  }
1127
- .el-divider--horizontal[data-v-b04d3f8b] {
1147
+ .el-divider--horizontal[data-v-23f1c97b] {
1128
1148
  margin: 12px 0;
1129
1149
  }
1130
- .serviceflow-nodeView[data-v-b04d3f8b] {
1150
+ .serviceflow-nodeView[data-v-23f1c97b] {
1131
1151
  border: 1px solid #5a90f9;
1132
1152
  background: #eef3fe;
1133
1153
  }
1134
- .serviceflow-nodeTitle[data-v-b04d3f8b] {
1154
+ .serviceflow-nodeTitle[data-v-23f1c97b] {
1135
1155
  width: 80px;
1136
1156
  }
1137
- .serviceflow-nodeView[data-v-1519c141] {
1157
+ .serviceflow-nodeView[data-v-9770119b] {
1138
1158
  box-sizing: border-box;
1139
1159
  margin: 10px 10px;
1140
1160
  width: 180px;
@@ -1143,7 +1163,7 @@
1143
1163
  border-radius: 2px 2px 2px 2px;
1144
1164
  padding: 20px 10px;
1145
1165
  }
1146
- .serviceflow-nodeTitle[data-v-1519c141] {
1166
+ .serviceflow-nodeTitle[data-v-9770119b] {
1147
1167
  width: 90px;
1148
1168
  height: 15px;
1149
1169
  font-weight: 400;
@@ -1159,7 +1179,7 @@
1159
1179
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1160
1180
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1161
1181
  }
1162
- .serviceflow-nodeContent[data-v-1519c141] {
1182
+ .serviceflow-nodeContent[data-v-9770119b] {
1163
1183
  /* width: 100%; */
1164
1184
  height: 15px;
1165
1185
  font-weight: 400;
@@ -1175,39 +1195,19 @@
1175
1195
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1176
1196
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1177
1197
  }
1178
- .serviceflow-nodeContent-desc[data-v-1519c141] {
1198
+ .serviceflow-nodeContent-desc[data-v-9770119b] {
1179
1199
  }
1180
- .el-divider--horizontal[data-v-1519c141] {
1200
+ .el-divider--horizontal[data-v-9770119b] {
1181
1201
  margin: 12px 0;
1182
1202
  }
1183
- .serviceflow-nodeView[data-v-1519c141] {
1203
+ .serviceflow-nodeView[data-v-9770119b] {
1184
1204
  border: 1px solid #5a90f9;
1185
1205
  background: #eef3fe;
1186
1206
  }
1187
- .serviceflow-nodeTitle[data-v-1519c141] {
1207
+ .serviceflow-nodeTitle[data-v-9770119b] {
1188
1208
  width: 80px;
1189
1209
  }
1190
-
1191
- .aaa[data-v-8bd72b80] {
1192
- width: 300px;
1193
- height: 200px;
1194
- background: #ffffff;
1195
- box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
1196
- border-radius: 2px 2px 2px 2px;
1197
- }
1198
- .content[data-v-8bd72b80] {
1199
- width: 28px;
1200
- height: 15px;
1201
- font-weight: 400;
1202
- font-size: 14px;
1203
- color: #333333;
1204
- line-height: 14px;
1205
- text-align: left;
1206
- font-style: normal;
1207
- text-transform: none;
1208
- padding: 5px 0px 4px 10px;
1209
- }
1210
- .serviceflow-nodeView[data-v-96d149c1] {
1210
+ .serviceflow-nodeView[data-v-08d9d211] {
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-96d149c1] {
1219
+ .serviceflow-nodeTitle[data-v-08d9d211] {
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-96d149c1] {
1235
+ .serviceflow-nodeContent[data-v-08d9d211] {
1236
1236
  /* width: 100%; */
1237
1237
  height: 15px;
1238
1238
  font-weight: 400;
@@ -1248,27 +1248,21 @@
1248
1248
  overflow: hidden; /* 隐藏超出div宽度的文本 */
1249
1249
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
1250
1250
  }
1251
- .serviceflow-nodeContent-desc[data-v-96d149c1] {
1251
+ .serviceflow-nodeContent-desc[data-v-08d9d211] {
1252
1252
  }
1253
- .el-divider--horizontal[data-v-96d149c1] {
1253
+ .el-divider--horizontal[data-v-08d9d211] {
1254
1254
  margin: 12px 0;
1255
1255
  }
1256
- .serviceflow-nodeView[data-v-96d149c1] {
1256
+ .serviceflow-nodeView[data-v-08d9d211] {
1257
1257
  border: 1px solid #5a90f9;
1258
1258
  background: #eef3fe;
1259
1259
  }
1260
- .serviceflow-nodeTitle[data-v-96d149c1] {
1260
+ .serviceflow-nodeTitle[data-v-08d9d211] {
1261
1261
  width: 80px;
1262
1262
  }
1263
1263
 
1264
- .el-select + .el-input[data-v-7fcf8a84] {
1265
- margin-left: 10px;
1266
- }
1267
- .el-input + .el-input[data-v-7fcf8a84] {
1268
- margin-left: 10px;
1269
- }
1270
- .el-input + .el-button[data-v-7fcf8a84] {
1271
- margin-left: 10px;
1264
+ .el-radio[data-v-1bbd6187] {
1265
+ margin-right: 10px;
1272
1266
  }
1273
1267
 
1274
1268
  .el-select + .el-input[data-v-b53b2895] {
@@ -1281,10 +1275,6 @@
1281
1275
  margin-left: 10px;
1282
1276
  }
1283
1277
 
1284
- .el-radio[data-v-1bbd6187] {
1285
- margin-right: 10px;
1286
- }
1287
-
1288
1278
  .el-radio[data-v-1ee0eb33] {
1289
1279
  margin-right: 10px;
1290
1280
  }
@@ -1292,6 +1282,16 @@
1292
1282
  margin-top: 0px;
1293
1283
  }
1294
1284
 
1285
+ .el-select + .el-input[data-v-7fcf8a84] {
1286
+ margin-left: 10px;
1287
+ }
1288
+ .el-input + .el-input[data-v-7fcf8a84] {
1289
+ margin-left: 10px;
1290
+ }
1291
+ .el-input + .el-button[data-v-7fcf8a84] {
1292
+ margin-left: 10px;
1293
+ }
1294
+
1295
1295
  [data-v-9cc733d7] .el-cascader-menu {
1296
1296
  min-width: 120px !important;
1297
1297
  }
@@ -1306,13 +1306,13 @@
1306
1306
  cursor: pointer;
1307
1307
  }
1308
1308
 
1309
- [data-v-9a3ee19e] .el-dropdown {
1310
- vertical-align: middle;
1311
- }
1312
-
1313
1309
  [data-v-2d06523b] .el-upload {
1314
1310
  width: 100%;
1315
1311
  }
1316
1312
  [data-v-2d06523b] .el-button {
1317
1313
  width: 100%;
1318
1314
  }
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.46",
3
+ "version": "2.1.51",
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.83",
64
+ "agilebuilder-ui": "1.0.86",
65
65
  "codemirror": "^6.0.1",
66
66
  "nprogress": "^0.2.0",
67
67
  "pinia": "^2.1.7",