service-flow-designer 2.0.24 → 2.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/designer/service-flow-view/view-index.vue.js +1 -1
- package/dist/es/designer/service-flow-view/view-index.vue2.js +5 -2
- package/dist/es/designer/service-panel/service-list.vue.js +1 -1
- package/dist/es/designer/service-panel/service-list.vue2.js +31 -19
- package/dist/es/style.css +321 -321
- package/package.json +2 -2
|
@@ -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-
|
|
4
|
+
const ServiceFlowView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c4ef30f9"]]);
|
|
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-
|
|
21
|
+
const _withScopeId = (n) => (pushScopeId("data-v-c4ef30f9"), n = n(), popScopeId(), n);
|
|
22
22
|
const _hoisted_1 = {
|
|
23
23
|
class: "amb-design-content",
|
|
24
24
|
ref: "ambServiceFlowContent"
|
|
@@ -223,7 +223,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
223
223
|
saveService2.log = JSON.stringify(saveService2.log);
|
|
224
224
|
saveService2.flow = JSON.stringify(saveService2.flow);
|
|
225
225
|
saveService2.returnValues = JSON.stringify(saveService2.returnValues);
|
|
226
|
-
http.post("/component/super-page-design/service-flow", {
|
|
226
|
+
http.post(window["$vueApp"].config.globalProperties.baseAPI + "/component/super-page-design/service-flow", {
|
|
227
|
+
designLog: description,
|
|
228
|
+
appServiceFlow: saveService2
|
|
229
|
+
}).then((res) => {
|
|
227
230
|
if (res) {
|
|
228
231
|
ElMessage({
|
|
229
232
|
message: "保存成功",
|
|
@@ -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-
|
|
4
|
+
const ServiceList = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-286d914e"]]);
|
|
5
5
|
export {
|
|
6
6
|
ServiceList as default
|
|
7
7
|
};
|
|
@@ -15,8 +15,8 @@ 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
|
-
import { ElMessage } from "element-plus";
|
|
19
|
-
const _withScopeId = (n) => (pushScopeId("data-v-
|
|
18
|
+
import { ElMessage, ElMessageBox } from "element-plus";
|
|
19
|
+
const _withScopeId = (n) => (pushScopeId("data-v-286d914e"), 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" };
|
|
@@ -108,9 +108,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
108
108
|
ElMessage.warning("名称不能为空");
|
|
109
109
|
return;
|
|
110
110
|
}
|
|
111
|
-
if (
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
if ("MENU" !== serviceFlow.value.type) {
|
|
112
|
+
if (!serviceFlow.value.customCode) {
|
|
113
|
+
ElMessage.warning("自定义编码不能为空");
|
|
114
|
+
return;
|
|
115
|
+
}
|
|
114
116
|
}
|
|
115
117
|
console.log("保存服务基本信息:", serviceFlow.value);
|
|
116
118
|
if (!serviceFlow.value.systemCode) {
|
|
@@ -150,6 +152,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
150
152
|
ElMessage.warning("该节点下存在子节点,不能删除!");
|
|
151
153
|
return;
|
|
152
154
|
}
|
|
155
|
+
ElMessageBox.confirm("确定要删除吗?", "确认", {
|
|
156
|
+
confirmButtonText: "确定",
|
|
157
|
+
cancelButtonText: "取消",
|
|
158
|
+
type: "warning"
|
|
159
|
+
}).then(({ value }) => {
|
|
160
|
+
_deleteService();
|
|
161
|
+
});
|
|
162
|
+
};
|
|
163
|
+
const _deleteService = () => {
|
|
153
164
|
http.delete(window["$vueApp"].config.globalProperties.baseAPI + "/component/super-page-design/service-flow", {
|
|
154
165
|
data: [contextMenuData.value.id]
|
|
155
166
|
}).then((res) => {
|
|
@@ -247,6 +258,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
247
258
|
ref: serviceTreeRef,
|
|
248
259
|
data: __props.serviceTreeData,
|
|
249
260
|
props: treeProps,
|
|
261
|
+
"expand-on-click-node": false,
|
|
250
262
|
"default-expand-all": true,
|
|
251
263
|
"check-strictly": true,
|
|
252
264
|
"highlight-current": "",
|
|
@@ -308,18 +320,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
308
320
|
])
|
|
309
321
|
]),
|
|
310
322
|
default: withCtx(() => [
|
|
311
|
-
createVNode(_component_el_form_item, {
|
|
312
|
-
label: "名称:",
|
|
313
|
-
required: true
|
|
314
|
-
}, {
|
|
315
|
-
default: withCtx(() => [
|
|
316
|
-
createVNode(_component_el_input, {
|
|
317
|
-
modelValue: serviceFlow.value.name,
|
|
318
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => serviceFlow.value.name = $event)
|
|
319
|
-
}, null, 8, ["modelValue"])
|
|
320
|
-
]),
|
|
321
|
-
_: 1
|
|
322
|
-
}),
|
|
323
323
|
editType.value === "SERVICE" ? (openBlock(), createBlock(_component_el_form_item, {
|
|
324
324
|
key: 0,
|
|
325
325
|
label: "自定义编码:",
|
|
@@ -329,11 +329,23 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
329
329
|
createVNode(_component_el_input, {
|
|
330
330
|
disabled: serviceFlow.value.id,
|
|
331
331
|
modelValue: serviceFlow.value.customCode,
|
|
332
|
-
"onUpdate:modelValue": _cache[
|
|
332
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => serviceFlow.value.customCode = $event)
|
|
333
333
|
}, null, 8, ["disabled", "modelValue"])
|
|
334
334
|
]),
|
|
335
335
|
_: 1
|
|
336
|
-
})) : createCommentVNode("", true)
|
|
336
|
+
})) : createCommentVNode("", true),
|
|
337
|
+
createVNode(_component_el_form_item, {
|
|
338
|
+
label: " 名称:",
|
|
339
|
+
required: true
|
|
340
|
+
}, {
|
|
341
|
+
default: withCtx(() => [
|
|
342
|
+
createVNode(_component_el_input, {
|
|
343
|
+
modelValue: serviceFlow.value.name,
|
|
344
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => serviceFlow.value.name = $event)
|
|
345
|
+
}, null, 8, ["modelValue"])
|
|
346
|
+
]),
|
|
347
|
+
_: 1
|
|
348
|
+
})
|
|
337
349
|
]),
|
|
338
350
|
_: 1
|
|
339
351
|
}, 8, ["modelValue", "title"]),
|
package/dist/es/style.css
CHANGED
|
@@ -22,48 +22,7 @@
|
|
|
22
22
|
[data-v-a35a4385] .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
|
-
.amb-design-content[data-v-ff04c7d7] {
|
|
25
|
+
.amb-design-content[data-v-c4ef30f9] {
|
|
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
|
-
.amb-design-content[data-v-
|
|
33
|
+
.amb-design-content[data-v-c4ef30f9]::-webkit-scrollbar {
|
|
75
34
|
width: 1px;
|
|
76
35
|
}
|
|
77
|
-
.amb-design-tool[data-v-
|
|
36
|
+
.amb-design-tool[data-v-c4ef30f9] {
|
|
78
37
|
position: -webkit-sticky; /**Safari */
|
|
79
38
|
position: sticky;
|
|
80
39
|
width: 100%;
|
|
@@ -87,7 +46,7 @@
|
|
|
87
46
|
border-radius: 6px 6px 6px 6px;
|
|
88
47
|
z-index: 0;
|
|
89
48
|
}
|
|
90
|
-
.amb-page-type[data-v-
|
|
49
|
+
.amb-page-type[data-v-c4ef30f9] {
|
|
91
50
|
padding-top: 11px;
|
|
92
51
|
padding-left: 6px;
|
|
93
52
|
padding-right: 6px;
|
|
@@ -95,14 +54,14 @@
|
|
|
95
54
|
border-radius: 4px 4px 4px 4px;
|
|
96
55
|
cursor: pointer;
|
|
97
56
|
}
|
|
98
|
-
.amb-page-type[data-v-
|
|
57
|
+
.amb-page-type[data-v-c4ef30f9]:hover {
|
|
99
58
|
background: rgba(11, 45, 101, 0.105);
|
|
100
59
|
}
|
|
101
|
-
.amb-page-type.selected[data-v-
|
|
60
|
+
.amb-page-type.selected[data-v-c4ef30f9] {
|
|
102
61
|
background: #5893ef;
|
|
103
62
|
color: #ffffff;
|
|
104
63
|
}
|
|
105
|
-
.amb-page-type > label[data-v-
|
|
64
|
+
.amb-page-type > label[data-v-c4ef30f9] {
|
|
106
65
|
font-size: 14px;
|
|
107
66
|
padding-left: 6px;
|
|
108
67
|
padding-right: 6px;
|
|
@@ -111,11 +70,11 @@
|
|
|
111
70
|
position: relative;
|
|
112
71
|
cursor: pointer;
|
|
113
72
|
}
|
|
114
|
-
.amb-design-tool-split[data-v-
|
|
73
|
+
.amb-design-tool-split[data-v-c4ef30f9] {
|
|
115
74
|
height: 25px;
|
|
116
75
|
margin-top: -12px;
|
|
117
76
|
}
|
|
118
|
-
.amb-design-board[data-v-
|
|
77
|
+
.amb-design-board[data-v-c4ef30f9] {
|
|
119
78
|
margin: 0 auto;
|
|
120
79
|
margin-top: 28px;
|
|
121
80
|
overflow-y: auto;
|
|
@@ -125,24 +84,24 @@
|
|
|
125
84
|
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
|
|
126
85
|
padding-bottom: 20px;
|
|
127
86
|
}
|
|
128
|
-
.container[data-v-
|
|
87
|
+
.container[data-v-c4ef30f9] {
|
|
129
88
|
height: 100%;
|
|
130
89
|
width: 100%;
|
|
131
90
|
}
|
|
132
|
-
.amb-item-ghost[data-v-
|
|
91
|
+
.amb-item-ghost[data-v-c4ef30f9] {
|
|
133
92
|
background-color: #5893ef;
|
|
134
93
|
height: 5px;
|
|
135
94
|
line-height: 5px;
|
|
136
95
|
overflow: hidden;
|
|
137
96
|
}
|
|
138
97
|
/* 将你的自定义样式添加到这里 */
|
|
139
|
-
.draggable-placeholder[data-v-
|
|
98
|
+
.draggable-placeholder[data-v-c4ef30f9] {
|
|
140
99
|
background-color: red;
|
|
141
100
|
border: 1px dashed #ddd;
|
|
142
101
|
margin: 5px;
|
|
143
102
|
padding: 10px;
|
|
144
103
|
}
|
|
145
|
-
#LF-view[data-v-
|
|
104
|
+
#LF-view[data-v-c4ef30f9] {
|
|
146
105
|
width: calc(100% - 100px);
|
|
147
106
|
height: 80%;
|
|
148
107
|
outline: none;
|
|
@@ -154,10 +113,10 @@
|
|
|
154
113
|
/**
|
|
155
114
|
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
156
115
|
*/
|
|
157
|
-
[data-v-
|
|
116
|
+
[data-v-c4ef30f9] .el-overlay {
|
|
158
117
|
position: static !important;
|
|
159
118
|
}
|
|
160
|
-
.triangle[data-v-
|
|
119
|
+
.triangle[data-v-c4ef30f9] {
|
|
161
120
|
display: inline-block;
|
|
162
121
|
width: 0;
|
|
163
122
|
height: 0;
|
|
@@ -166,6 +125,47 @@
|
|
|
166
125
|
border-color: transparent transparent var(--el-skeleton-color) transparent;
|
|
167
126
|
}
|
|
168
127
|
|
|
128
|
+
.amb-design-assembly-content[data-v-59e0837d] {
|
|
129
|
+
background: #ffffff;
|
|
130
|
+
box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.05);
|
|
131
|
+
height: 100%;
|
|
132
|
+
padding-left: 10px;
|
|
133
|
+
padding-right: 10px;
|
|
134
|
+
overflow: auto;
|
|
135
|
+
}
|
|
136
|
+
/*控制滚动条宽度*/
|
|
137
|
+
.amb-design-assembly-content[data-v-59e0837d]::-webkit-scrollbar {
|
|
138
|
+
width: 1px;
|
|
139
|
+
}
|
|
140
|
+
.amb-assembly-header[data-v-59e0837d] {
|
|
141
|
+
position: absolute;
|
|
142
|
+
width: 220px;
|
|
143
|
+
text-align: center;
|
|
144
|
+
padding: 18px 0px 10px 0px;
|
|
145
|
+
padding-bottom: 14px;
|
|
146
|
+
background-color: #ffffff;
|
|
147
|
+
}
|
|
148
|
+
.amb-assembly-header-type[data-v-59e0837d] {
|
|
149
|
+
border-radius: 100px 100px 100px 100px;
|
|
150
|
+
background: #ffffff;
|
|
151
|
+
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
|
|
152
|
+
padding: 10px;
|
|
153
|
+
padding-bottom: 12px;
|
|
154
|
+
}
|
|
155
|
+
.amb-assembly-header-type > label[data-v-59e0837d] {
|
|
156
|
+
padding: 4px 14px;
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
font-size: 14px;
|
|
159
|
+
}
|
|
160
|
+
.amb-assembly-header-type > label.selected[data-v-59e0837d] {
|
|
161
|
+
border-radius: 100px 100px 100px 100px;
|
|
162
|
+
background: #5893ef;
|
|
163
|
+
color: #ffffff;
|
|
164
|
+
}
|
|
165
|
+
.amb-design-assembly-list[data-v-59e0837d] {
|
|
166
|
+
padding-top: 80px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
169
|
.editorTool[data-v-d55ab098] {
|
|
170
170
|
margin-left: auto;
|
|
171
171
|
}
|
|
@@ -183,6 +183,20 @@
|
|
|
183
183
|
margin-top: 10px;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
+
[data-v-65e38bfb] .el-radio {
|
|
187
|
+
margin: 0;
|
|
188
|
+
}
|
|
189
|
+
.el-radio + .el-radio[data-v-65e38bfb] {
|
|
190
|
+
margin-left: 10px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
[data-v-808a13e1] .el-radio {
|
|
194
|
+
margin: 0;
|
|
195
|
+
}
|
|
196
|
+
.el-radio + .el-radio[data-v-808a13e1] {
|
|
197
|
+
margin-left: 10px;
|
|
198
|
+
}
|
|
199
|
+
|
|
186
200
|
.editorTool[data-v-684c1f08] {
|
|
187
201
|
margin-left: auto;
|
|
188
202
|
}
|
|
@@ -196,11 +210,73 @@
|
|
|
196
210
|
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
197
211
|
}
|
|
198
212
|
|
|
199
|
-
[data-v-
|
|
200
|
-
margin:
|
|
213
|
+
.el-alert + .el-table[data-v-028fb838] {
|
|
214
|
+
margin-top: 10px;
|
|
201
215
|
}
|
|
202
|
-
.el-
|
|
203
|
-
margin
|
|
216
|
+
.el-table + .el-alert[data-v-028fb838] {
|
|
217
|
+
margin: 10px 0;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.el-tabs + .el-alert[data-v-08737620] {
|
|
221
|
+
margin-top: 10px;
|
|
222
|
+
}
|
|
223
|
+
.el-alert + .el-form-item[data-v-08737620] {
|
|
224
|
+
margin-top: 10px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.el-alert + .el-table[data-v-82e0dfef] {
|
|
228
|
+
margin-top: 10px;
|
|
229
|
+
}
|
|
230
|
+
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
231
|
+
margin-top: 10px;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
[data-v-286d914e] .el-table__row {
|
|
235
|
+
cursor: pointer;
|
|
236
|
+
}
|
|
237
|
+
/** 右键菜单样式 */
|
|
238
|
+
.context-menu[data-v-286d914e] {
|
|
239
|
+
position: absolute;
|
|
240
|
+
background: #fff;
|
|
241
|
+
z-index: 999;
|
|
242
|
+
margin: 5;
|
|
243
|
+
padding: 8px 8px;
|
|
244
|
+
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
245
|
+
border: 1px solid #bbbbbb;
|
|
246
|
+
border-radius: 10px;
|
|
247
|
+
font-size: 14px;
|
|
248
|
+
}
|
|
249
|
+
.context-menu li[data-v-286d914e] {
|
|
250
|
+
list-style-type: none;
|
|
251
|
+
min-width: 75px;
|
|
252
|
+
line-height: 28px;
|
|
253
|
+
text-align: left;
|
|
254
|
+
border-radius: 5px;
|
|
255
|
+
padding-left: 5px;
|
|
256
|
+
cursor: pointer;
|
|
257
|
+
}
|
|
258
|
+
.context-menu li[data-v-286d914e]:hover {
|
|
259
|
+
background: #0165e1;
|
|
260
|
+
color: #fff;
|
|
261
|
+
}
|
|
262
|
+
/** 右键菜单样式 */
|
|
263
|
+
.custom-tree-node[data-v-286d914e] {
|
|
264
|
+
font-size: 14px;
|
|
265
|
+
padding-right: 8px;
|
|
266
|
+
display: flex; /* 使用Flex布局 */
|
|
267
|
+
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.el-dialog__wrapper[data-v-d41cb0ad] {
|
|
271
|
+
overflow: hidden !important;
|
|
272
|
+
padding-right: 0 !important;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.el-alert + .el-form-item[data-v-32875028] {
|
|
276
|
+
margin-top: 10px;
|
|
277
|
+
}
|
|
278
|
+
.el-alert + .el-table[data-v-32875028] {
|
|
279
|
+
margin: 10px 0;
|
|
204
280
|
}
|
|
205
281
|
|
|
206
282
|
.el-alert + .el-table[data-v-e27c4c1e] {
|
|
@@ -278,6 +354,16 @@
|
|
|
278
354
|
.amb-assembly-item-drag[data-v-ce167986] {
|
|
279
355
|
opacity: 1 !important;
|
|
280
356
|
}
|
|
357
|
+
|
|
358
|
+
.el-drawer__header {
|
|
359
|
+
margin-bottom: 0 !important;
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
363
|
+
*/
|
|
364
|
+
[data-v-c51cce99] .el-overlay {
|
|
365
|
+
position: static;
|
|
366
|
+
}
|
|
281
367
|
.control-item[data-v-fdc6ec07] {
|
|
282
368
|
top: -5px;
|
|
283
369
|
position: relative;
|
|
@@ -418,113 +504,7 @@
|
|
|
418
504
|
.el-alert + .el-form-item[data-v-d978e7dc] {
|
|
419
505
|
margin-top: 10px;
|
|
420
506
|
}
|
|
421
|
-
|
|
422
|
-
.el-tabs + .el-alert[data-v-08737620] {
|
|
423
|
-
margin-top: 10px;
|
|
424
|
-
}
|
|
425
|
-
.el-alert + .el-form-item[data-v-08737620] {
|
|
426
|
-
margin-top: 10px;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
.el-alert + .el-table[data-v-82e0dfef] {
|
|
430
|
-
margin-top: 10px;
|
|
431
|
-
}
|
|
432
|
-
.el-alert + .el-form-item[data-v-82e0dfef] {
|
|
433
|
-
margin-top: 10px;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.el-alert + .el-table[data-v-028fb838] {
|
|
437
|
-
margin-top: 10px;
|
|
438
|
-
}
|
|
439
|
-
.el-table + .el-alert[data-v-028fb838] {
|
|
440
|
-
margin: 10px 0;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
[data-v-808a13e1] .el-radio {
|
|
444
|
-
margin: 0;
|
|
445
|
-
}
|
|
446
|
-
.el-radio + .el-radio[data-v-808a13e1] {
|
|
447
|
-
margin-left: 10px;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
.el-drawer__header {
|
|
451
|
-
margin-bottom: 0 !important;
|
|
452
|
-
}
|
|
453
|
-
/**
|
|
454
|
-
解决右侧弹出属性配置遮罩层打开后页面其他地方无法点击问题
|
|
455
|
-
*/
|
|
456
|
-
[data-v-c51cce99] .el-overlay {
|
|
457
|
-
position: static;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
[data-v-2badb0bb] .el-table__row {
|
|
461
|
-
cursor: pointer;
|
|
462
|
-
}
|
|
463
|
-
/** 右键菜单样式 */
|
|
464
|
-
.context-menu[data-v-2badb0bb] {
|
|
465
|
-
position: absolute;
|
|
466
|
-
background: #fff;
|
|
467
|
-
z-index: 999;
|
|
468
|
-
margin: 5;
|
|
469
|
-
padding: 8px 8px;
|
|
470
|
-
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
471
|
-
border: 1px solid #bbbbbb;
|
|
472
|
-
border-radius: 10px;
|
|
473
|
-
font-size: 14px;
|
|
474
|
-
}
|
|
475
|
-
.context-menu li[data-v-2badb0bb] {
|
|
476
|
-
list-style-type: none;
|
|
477
|
-
min-width: 75px;
|
|
478
|
-
line-height: 28px;
|
|
479
|
-
text-align: left;
|
|
480
|
-
border-radius: 5px;
|
|
481
|
-
padding-left: 5px;
|
|
482
|
-
cursor: pointer;
|
|
483
|
-
}
|
|
484
|
-
.context-menu li[data-v-2badb0bb]:hover {
|
|
485
|
-
background: #0165e1;
|
|
486
|
-
color: #fff;
|
|
487
|
-
}
|
|
488
|
-
/** 右键菜单样式 */
|
|
489
|
-
.custom-tree-node[data-v-2badb0bb] {
|
|
490
|
-
font-size: 14px;
|
|
491
|
-
padding-right: 8px;
|
|
492
|
-
display: flex; /* 使用Flex布局 */
|
|
493
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.el-alert + .el-form-item[data-v-32875028] {
|
|
497
|
-
margin-top: 10px;
|
|
498
|
-
}
|
|
499
|
-
.el-alert + .el-table[data-v-32875028] {
|
|
500
|
-
margin: 10px 0;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.el-dialog__wrapper[data-v-d41cb0ad] {
|
|
504
|
-
overflow: hidden !important;
|
|
505
|
-
padding-right: 0 !important;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.node-content[data-v-b28923f3] {
|
|
509
|
-
width: 120px;
|
|
510
|
-
height: 44px;
|
|
511
|
-
background: #ffffff;
|
|
512
|
-
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
513
|
-
border-radius: 2px 2px 2px 2px;
|
|
514
|
-
}
|
|
515
|
-
.content[data-v-b28923f3] {
|
|
516
|
-
width: 28px;
|
|
517
|
-
height: 15px;
|
|
518
|
-
font-weight: 400;
|
|
519
|
-
font-size: 14px;
|
|
520
|
-
color: #333333;
|
|
521
|
-
line-height: 14px;
|
|
522
|
-
text-align: left;
|
|
523
|
-
font-style: normal;
|
|
524
|
-
text-transform: none;
|
|
525
|
-
padding: 5px 0px 4px 10px;
|
|
526
|
-
}
|
|
527
|
-
.nodeView[data-v-221a60f8] {
|
|
507
|
+
.nodeView[data-v-9fff2753] {
|
|
528
508
|
box-sizing: border-box;
|
|
529
509
|
margin: 10px 10px;
|
|
530
510
|
width: 180px;
|
|
@@ -533,7 +513,7 @@
|
|
|
533
513
|
border-radius: 2px 2px 2px 2px;
|
|
534
514
|
padding: 20px 10px;
|
|
535
515
|
}
|
|
536
|
-
.nodeTitle[data-v-
|
|
516
|
+
.nodeTitle[data-v-9fff2753] {
|
|
537
517
|
width: 90px;
|
|
538
518
|
height: 15px;
|
|
539
519
|
font-weight: 400;
|
|
@@ -548,7 +528,7 @@
|
|
|
548
528
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
549
529
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
550
530
|
}
|
|
551
|
-
.nodeContent[data-v-
|
|
531
|
+
.nodeContent[data-v-9fff2753] {
|
|
552
532
|
/* width: 100%; */
|
|
553
533
|
height: 15px;
|
|
554
534
|
font-weight: 400;
|
|
@@ -563,19 +543,19 @@
|
|
|
563
543
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
564
544
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
565
545
|
}
|
|
566
|
-
.nodeContent-desc[data-v-
|
|
546
|
+
.nodeContent-desc[data-v-9fff2753]{
|
|
567
547
|
}
|
|
568
|
-
.el-divider--horizontal[data-v-
|
|
548
|
+
.el-divider--horizontal[data-v-9fff2753] {
|
|
569
549
|
margin: 12px 0;
|
|
570
550
|
}
|
|
571
|
-
.nodeView[data-v-
|
|
551
|
+
.nodeView[data-v-9fff2753] {
|
|
572
552
|
border: 1px solid #5a90f9;
|
|
573
553
|
background: #eef3fe;
|
|
574
554
|
}
|
|
575
|
-
.nodeTitle[data-v-
|
|
555
|
+
.nodeTitle[data-v-9fff2753] {
|
|
576
556
|
width: 80px;
|
|
577
557
|
}
|
|
578
|
-
.nodeView[data-v-
|
|
558
|
+
.nodeView[data-v-b1d2a966] {
|
|
579
559
|
box-sizing: border-box;
|
|
580
560
|
margin: 10px 10px;
|
|
581
561
|
width: 180px;
|
|
@@ -584,7 +564,7 @@
|
|
|
584
564
|
border-radius: 2px 2px 2px 2px;
|
|
585
565
|
padding: 20px 10px;
|
|
586
566
|
}
|
|
587
|
-
.nodeTitle[data-v-
|
|
567
|
+
.nodeTitle[data-v-b1d2a966] {
|
|
588
568
|
width: 90px;
|
|
589
569
|
height: 15px;
|
|
590
570
|
font-weight: 400;
|
|
@@ -599,7 +579,7 @@
|
|
|
599
579
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
600
580
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
601
581
|
}
|
|
602
|
-
.nodeContent[data-v-
|
|
582
|
+
.nodeContent[data-v-b1d2a966] {
|
|
603
583
|
/* width: 100%; */
|
|
604
584
|
height: 15px;
|
|
605
585
|
font-weight: 400;
|
|
@@ -614,19 +594,19 @@
|
|
|
614
594
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
615
595
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
616
596
|
}
|
|
617
|
-
.nodeContent-desc[data-v-
|
|
597
|
+
.nodeContent-desc[data-v-b1d2a966]{
|
|
618
598
|
}
|
|
619
|
-
.el-divider--horizontal[data-v-
|
|
599
|
+
.el-divider--horizontal[data-v-b1d2a966] {
|
|
620
600
|
margin: 12px 0;
|
|
621
601
|
}
|
|
622
|
-
.nodeView[data-v-
|
|
602
|
+
.nodeView[data-v-b1d2a966] {
|
|
623
603
|
border: 1px solid #5a90f9;
|
|
624
604
|
background: #eef3fe;
|
|
625
605
|
}
|
|
626
|
-
.nodeTitle[data-v-
|
|
606
|
+
.nodeTitle[data-v-b1d2a966] {
|
|
627
607
|
width: 80px;
|
|
628
608
|
}
|
|
629
|
-
.nodeView[data-v-
|
|
609
|
+
.nodeView[data-v-4c6dfa4a] {
|
|
630
610
|
box-sizing: border-box;
|
|
631
611
|
margin: 10px 10px;
|
|
632
612
|
width: 180px;
|
|
@@ -635,7 +615,7 @@
|
|
|
635
615
|
border-radius: 2px 2px 2px 2px;
|
|
636
616
|
padding: 20px 10px;
|
|
637
617
|
}
|
|
638
|
-
.nodeTitle[data-v-
|
|
618
|
+
.nodeTitle[data-v-4c6dfa4a] {
|
|
639
619
|
width: 90px;
|
|
640
620
|
height: 15px;
|
|
641
621
|
font-weight: 400;
|
|
@@ -650,7 +630,7 @@
|
|
|
650
630
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
651
631
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
652
632
|
}
|
|
653
|
-
.nodeContent[data-v-
|
|
633
|
+
.nodeContent[data-v-4c6dfa4a] {
|
|
654
634
|
/* width: 100%; */
|
|
655
635
|
height: 15px;
|
|
656
636
|
font-weight: 400;
|
|
@@ -665,71 +645,40 @@
|
|
|
665
645
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
666
646
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
667
647
|
}
|
|
668
|
-
.nodeContent-desc[data-v-
|
|
648
|
+
.nodeContent-desc[data-v-4c6dfa4a]{
|
|
669
649
|
}
|
|
670
|
-
.el-divider--horizontal[data-v-
|
|
650
|
+
.el-divider--horizontal[data-v-4c6dfa4a] {
|
|
671
651
|
margin: 12px 0;
|
|
672
652
|
}
|
|
673
|
-
.nodeView[data-v-
|
|
653
|
+
.nodeView[data-v-4c6dfa4a] {
|
|
674
654
|
border: 1px solid #5a90f9;
|
|
675
|
-
background: #eef3fe;
|
|
655
|
+
background: #eef3fe;
|
|
656
|
+
width: 180px;
|
|
657
|
+
min-height: 95px;
|
|
676
658
|
}
|
|
677
|
-
.
|
|
678
|
-
width: 80px;
|
|
659
|
+
.nodeContent[data-v-4c6dfa4a] {
|
|
679
660
|
}
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
661
|
+
|
|
662
|
+
.node-content[data-v-69a854a3] {
|
|
663
|
+
width: 120px;
|
|
664
|
+
height: 44px;
|
|
665
|
+
background: #ffffff;
|
|
685
666
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
686
|
-
border-radius: 2px 2px 2px 2px;
|
|
687
|
-
padding: 20px 10px;
|
|
688
|
-
}
|
|
689
|
-
.nodeTitle[data-v-c176feb6] {
|
|
690
|
-
width: 90px;
|
|
691
|
-
height: 15px;
|
|
692
|
-
font-weight: 400;
|
|
693
|
-
font-size: 16px;
|
|
694
|
-
color: #333333;
|
|
695
|
-
line-height: 14px;
|
|
696
|
-
text-align: left;
|
|
697
|
-
font-style: normal;
|
|
698
|
-
text-transform: none;
|
|
699
|
-
padding: 0px 24px;
|
|
700
|
-
white-space: nowrap; /* 确保文本在一行内显示 */
|
|
701
|
-
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
702
|
-
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
667
|
+
border-radius: 2px 2px 2px 2px;
|
|
703
668
|
}
|
|
704
|
-
.
|
|
705
|
-
|
|
669
|
+
.content[data-v-69a854a3] {
|
|
670
|
+
width: 28px;
|
|
706
671
|
height: 15px;
|
|
707
672
|
font-weight: 400;
|
|
708
673
|
font-size: 14px;
|
|
709
|
-
color: #
|
|
674
|
+
color: #333333;
|
|
710
675
|
line-height: 14px;
|
|
711
676
|
text-align: left;
|
|
712
677
|
font-style: normal;
|
|
713
678
|
text-transform: none;
|
|
714
|
-
padding: 0px
|
|
715
|
-
white-space: nowrap; /* 确保文本在一行内显示 */
|
|
716
|
-
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
717
|
-
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
718
|
-
}
|
|
719
|
-
.nodeContent-desc[data-v-c176feb6]{
|
|
720
|
-
}
|
|
721
|
-
.el-divider--horizontal[data-v-c176feb6] {
|
|
722
|
-
margin: 12px 0;
|
|
723
|
-
}
|
|
724
|
-
.nodeView[data-v-c176feb6] {
|
|
725
|
-
border: 1px solid #5a90f9;
|
|
726
|
-
background: #eef3fe;
|
|
727
|
-
width: 180px;
|
|
728
|
-
min-height: 95px;
|
|
729
|
-
}
|
|
730
|
-
.nodeContent[data-v-c176feb6] {
|
|
679
|
+
padding: 5px 0px 4px 10px;
|
|
731
680
|
}
|
|
732
|
-
.nodeView[data-v-
|
|
681
|
+
.nodeView[data-v-bd32480c] {
|
|
733
682
|
box-sizing: border-box;
|
|
734
683
|
margin: 10px 10px;
|
|
735
684
|
width: 180px;
|
|
@@ -738,7 +687,7 @@
|
|
|
738
687
|
border-radius: 2px 2px 2px 2px;
|
|
739
688
|
padding: 20px 10px;
|
|
740
689
|
}
|
|
741
|
-
.nodeTitle[data-v-
|
|
690
|
+
.nodeTitle[data-v-bd32480c] {
|
|
742
691
|
width: 90px;
|
|
743
692
|
height: 15px;
|
|
744
693
|
font-weight: 400;
|
|
@@ -753,7 +702,7 @@
|
|
|
753
702
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
754
703
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
755
704
|
}
|
|
756
|
-
.nodeContent[data-v-
|
|
705
|
+
.nodeContent[data-v-bd32480c] {
|
|
757
706
|
/* width: 100%; */
|
|
758
707
|
height: 15px;
|
|
759
708
|
font-weight: 400;
|
|
@@ -768,17 +717,18 @@
|
|
|
768
717
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
769
718
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
770
719
|
}
|
|
771
|
-
.nodeContent-desc[data-v-
|
|
720
|
+
.nodeContent-desc[data-v-bd32480c]{
|
|
772
721
|
}
|
|
773
|
-
.el-divider--horizontal[data-v-
|
|
722
|
+
.el-divider--horizontal[data-v-bd32480c] {
|
|
774
723
|
margin: 12px 0;
|
|
775
724
|
}
|
|
776
|
-
.nodeView[data-v-
|
|
725
|
+
.nodeView[data-v-bd32480c] {
|
|
777
726
|
border: 1px solid #5a90f9;
|
|
778
|
-
background: #eef3fe;
|
|
727
|
+
background: #eef3fe;
|
|
728
|
+
width: 180px;
|
|
729
|
+
min-height: 95px;
|
|
779
730
|
}
|
|
780
|
-
.
|
|
781
|
-
width: 80px;
|
|
731
|
+
.nodeContent[data-v-bd32480c] {
|
|
782
732
|
}
|
|
783
733
|
.nodeView[data-v-5911272d] {
|
|
784
734
|
box-sizing: border-box;
|
|
@@ -831,7 +781,7 @@
|
|
|
831
781
|
.nodeTitle[data-v-5911272d] {
|
|
832
782
|
width: 80px;
|
|
833
783
|
}
|
|
834
|
-
.nodeView[data-v-
|
|
784
|
+
.nodeView[data-v-6d0cd280] {
|
|
835
785
|
box-sizing: border-box;
|
|
836
786
|
margin: 10px 10px;
|
|
837
787
|
width: 180px;
|
|
@@ -840,7 +790,7 @@
|
|
|
840
790
|
border-radius: 2px 2px 2px 2px;
|
|
841
791
|
padding: 20px 10px;
|
|
842
792
|
}
|
|
843
|
-
.nodeTitle[data-v-
|
|
793
|
+
.nodeTitle[data-v-6d0cd280] {
|
|
844
794
|
width: 90px;
|
|
845
795
|
height: 15px;
|
|
846
796
|
font-weight: 400;
|
|
@@ -855,7 +805,7 @@
|
|
|
855
805
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
856
806
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
857
807
|
}
|
|
858
|
-
.nodeContent[data-v-
|
|
808
|
+
.nodeContent[data-v-6d0cd280] {
|
|
859
809
|
/* width: 100%; */
|
|
860
810
|
height: 15px;
|
|
861
811
|
font-weight: 400;
|
|
@@ -870,19 +820,19 @@
|
|
|
870
820
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
871
821
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
872
822
|
}
|
|
873
|
-
.nodeContent-desc[data-v-
|
|
823
|
+
.nodeContent-desc[data-v-6d0cd280]{
|
|
874
824
|
}
|
|
875
|
-
.el-divider--horizontal[data-v-
|
|
825
|
+
.el-divider--horizontal[data-v-6d0cd280] {
|
|
876
826
|
margin: 12px 0;
|
|
877
827
|
}
|
|
878
|
-
.nodeView[data-v-
|
|
828
|
+
.nodeView[data-v-6d0cd280] {
|
|
879
829
|
border: 1px solid #5a90f9;
|
|
880
830
|
background: #eef3fe;
|
|
881
831
|
}
|
|
882
|
-
.nodeTitle[data-v-
|
|
832
|
+
.nodeTitle[data-v-6d0cd280] {
|
|
883
833
|
width: 80px;
|
|
884
834
|
}
|
|
885
|
-
.nodeView[data-v-
|
|
835
|
+
.nodeView[data-v-b604c489] {
|
|
886
836
|
box-sizing: border-box;
|
|
887
837
|
margin: 10px 10px;
|
|
888
838
|
width: 180px;
|
|
@@ -891,7 +841,7 @@
|
|
|
891
841
|
border-radius: 2px 2px 2px 2px;
|
|
892
842
|
padding: 20px 10px;
|
|
893
843
|
}
|
|
894
|
-
.nodeTitle[data-v-
|
|
844
|
+
.nodeTitle[data-v-b604c489] {
|
|
895
845
|
width: 90px;
|
|
896
846
|
height: 15px;
|
|
897
847
|
font-weight: 400;
|
|
@@ -906,7 +856,7 @@
|
|
|
906
856
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
907
857
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
908
858
|
}
|
|
909
|
-
.nodeContent[data-v-
|
|
859
|
+
.nodeContent[data-v-b604c489] {
|
|
910
860
|
/* width: 100%; */
|
|
911
861
|
height: 15px;
|
|
912
862
|
font-weight: 400;
|
|
@@ -921,27 +871,27 @@
|
|
|
921
871
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
922
872
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
923
873
|
}
|
|
924
|
-
.nodeContent-desc[data-v-
|
|
874
|
+
.nodeContent-desc[data-v-b604c489]{
|
|
925
875
|
}
|
|
926
|
-
.el-divider--horizontal[data-v-
|
|
876
|
+
.el-divider--horizontal[data-v-b604c489] {
|
|
927
877
|
margin: 12px 0;
|
|
928
878
|
}
|
|
929
|
-
.nodeView[data-v-
|
|
879
|
+
.nodeView[data-v-b604c489] {
|
|
930
880
|
border: 1px solid #5a90f9;
|
|
931
881
|
background: #eef3fe;
|
|
932
882
|
}
|
|
933
|
-
.nodeTitle[data-v-
|
|
883
|
+
.nodeTitle[data-v-b604c489] {
|
|
934
884
|
width: 80px;
|
|
935
885
|
}
|
|
936
886
|
|
|
937
|
-
.node-content[data-v-
|
|
887
|
+
.node-content[data-v-b28923f3] {
|
|
938
888
|
width: 120px;
|
|
939
889
|
height: 44px;
|
|
940
890
|
background: #ffffff;
|
|
941
891
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
942
892
|
border-radius: 2px 2px 2px 2px;
|
|
943
893
|
}
|
|
944
|
-
.content[data-v-
|
|
894
|
+
.content[data-v-b28923f3] {
|
|
945
895
|
width: 28px;
|
|
946
896
|
height: 15px;
|
|
947
897
|
font-weight: 400;
|
|
@@ -953,7 +903,7 @@
|
|
|
953
903
|
text-transform: none;
|
|
954
904
|
padding: 5px 0px 4px 10px;
|
|
955
905
|
}
|
|
956
|
-
.nodeView[data-v-
|
|
906
|
+
.nodeView[data-v-df366d04] {
|
|
957
907
|
box-sizing: border-box;
|
|
958
908
|
margin: 10px 10px;
|
|
959
909
|
width: 180px;
|
|
@@ -962,7 +912,7 @@
|
|
|
962
912
|
border-radius: 2px 2px 2px 2px;
|
|
963
913
|
padding: 20px 10px;
|
|
964
914
|
}
|
|
965
|
-
.nodeTitle[data-v-
|
|
915
|
+
.nodeTitle[data-v-df366d04] {
|
|
966
916
|
width: 90px;
|
|
967
917
|
height: 15px;
|
|
968
918
|
font-weight: 400;
|
|
@@ -977,7 +927,7 @@
|
|
|
977
927
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
978
928
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
979
929
|
}
|
|
980
|
-
.nodeContent[data-v-
|
|
930
|
+
.nodeContent[data-v-df366d04] {
|
|
981
931
|
/* width: 100%; */
|
|
982
932
|
height: 15px;
|
|
983
933
|
font-weight: 400;
|
|
@@ -992,19 +942,19 @@
|
|
|
992
942
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
993
943
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
994
944
|
}
|
|
995
|
-
.nodeContent-desc[data-v-
|
|
945
|
+
.nodeContent-desc[data-v-df366d04]{
|
|
996
946
|
}
|
|
997
|
-
.el-divider--horizontal[data-v-
|
|
947
|
+
.el-divider--horizontal[data-v-df366d04] {
|
|
998
948
|
margin: 12px 0;
|
|
999
949
|
}
|
|
1000
|
-
.nodeView[data-v-
|
|
950
|
+
.nodeView[data-v-df366d04] {
|
|
1001
951
|
border: 1px solid #5a90f9;
|
|
1002
952
|
background: #eef3fe;
|
|
1003
953
|
}
|
|
1004
|
-
.nodeTitle[data-v-
|
|
954
|
+
.nodeTitle[data-v-df366d04] {
|
|
1005
955
|
width: 80px;
|
|
1006
956
|
}
|
|
1007
|
-
.nodeView[data-v-
|
|
957
|
+
.nodeView[data-v-7702fcdb] {
|
|
1008
958
|
box-sizing: border-box;
|
|
1009
959
|
margin: 10px 10px;
|
|
1010
960
|
width: 180px;
|
|
@@ -1013,7 +963,7 @@
|
|
|
1013
963
|
border-radius: 2px 2px 2px 2px;
|
|
1014
964
|
padding: 20px 10px;
|
|
1015
965
|
}
|
|
1016
|
-
.nodeTitle[data-v-
|
|
966
|
+
.nodeTitle[data-v-7702fcdb] {
|
|
1017
967
|
width: 90px;
|
|
1018
968
|
height: 15px;
|
|
1019
969
|
font-weight: 400;
|
|
@@ -1028,7 +978,7 @@
|
|
|
1028
978
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1029
979
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1030
980
|
}
|
|
1031
|
-
.nodeContent[data-v-
|
|
981
|
+
.nodeContent[data-v-7702fcdb] {
|
|
1032
982
|
/* width: 100%; */
|
|
1033
983
|
height: 15px;
|
|
1034
984
|
font-weight: 400;
|
|
@@ -1043,40 +993,70 @@
|
|
|
1043
993
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1044
994
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1045
995
|
}
|
|
1046
|
-
.nodeContent-desc[data-v-
|
|
996
|
+
.nodeContent-desc[data-v-7702fcdb]{
|
|
1047
997
|
}
|
|
1048
|
-
.el-divider--horizontal[data-v-
|
|
998
|
+
.el-divider--horizontal[data-v-7702fcdb] {
|
|
1049
999
|
margin: 12px 0;
|
|
1050
1000
|
}
|
|
1051
|
-
.nodeView[data-v-
|
|
1001
|
+
.nodeView[data-v-7702fcdb] {
|
|
1052
1002
|
border: 1px solid #5a90f9;
|
|
1053
|
-
background: #eef3fe;
|
|
1054
|
-
width: 180px;
|
|
1055
|
-
min-height: 95px;
|
|
1003
|
+
background: #eef3fe;
|
|
1056
1004
|
}
|
|
1057
|
-
.
|
|
1005
|
+
.nodeTitle[data-v-7702fcdb] {
|
|
1006
|
+
width: 80px;
|
|
1058
1007
|
}
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1008
|
+
.nodeView[data-v-221a60f8] {
|
|
1009
|
+
box-sizing: border-box;
|
|
1010
|
+
margin: 10px 10px;
|
|
1011
|
+
width: 180px;
|
|
1012
|
+
height: 95px;
|
|
1064
1013
|
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1065
|
-
border-radius: 2px 2px 2px 2px;
|
|
1014
|
+
border-radius: 2px 2px 2px 2px;
|
|
1015
|
+
padding: 20px 10px;
|
|
1066
1016
|
}
|
|
1067
|
-
.
|
|
1068
|
-
width:
|
|
1017
|
+
.nodeTitle[data-v-221a60f8] {
|
|
1018
|
+
width: 90px;
|
|
1069
1019
|
height: 15px;
|
|
1070
1020
|
font-weight: 400;
|
|
1071
|
-
font-size:
|
|
1021
|
+
font-size: 16px;
|
|
1072
1022
|
color: #333333;
|
|
1073
1023
|
line-height: 14px;
|
|
1074
1024
|
text-align: left;
|
|
1075
1025
|
font-style: normal;
|
|
1076
1026
|
text-transform: none;
|
|
1077
|
-
padding:
|
|
1027
|
+
padding: 0px 24px;
|
|
1028
|
+
white-space: nowrap; /* 确保文本在一行内显示 */
|
|
1029
|
+
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1030
|
+
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1031
|
+
}
|
|
1032
|
+
.nodeContent[data-v-221a60f8] {
|
|
1033
|
+
/* width: 100%; */
|
|
1034
|
+
height: 15px;
|
|
1035
|
+
font-weight: 400;
|
|
1036
|
+
font-size: 14px;
|
|
1037
|
+
color: #666666;
|
|
1038
|
+
line-height: 14px;
|
|
1039
|
+
text-align: left;
|
|
1040
|
+
font-style: normal;
|
|
1041
|
+
text-transform: none;
|
|
1042
|
+
padding: 0px 0px;
|
|
1043
|
+
white-space: nowrap; /* 确保文本在一行内显示 */
|
|
1044
|
+
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1045
|
+
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1046
|
+
}
|
|
1047
|
+
.nodeContent-desc[data-v-221a60f8]{
|
|
1048
|
+
}
|
|
1049
|
+
.el-divider--horizontal[data-v-221a60f8] {
|
|
1050
|
+
margin: 12px 0;
|
|
1051
|
+
}
|
|
1052
|
+
.nodeView[data-v-221a60f8] {
|
|
1053
|
+
border: 1px solid #5a90f9;
|
|
1054
|
+
background: #eef3fe;
|
|
1055
|
+
}
|
|
1056
|
+
.nodeTitle[data-v-221a60f8] {
|
|
1057
|
+
width: 80px;
|
|
1078
1058
|
}
|
|
1079
|
-
.nodeView[data-v-
|
|
1059
|
+
.nodeView[data-v-b01d3a50] {
|
|
1080
1060
|
box-sizing: border-box;
|
|
1081
1061
|
margin: 10px 10px;
|
|
1082
1062
|
width: 180px;
|
|
@@ -1085,7 +1065,7 @@
|
|
|
1085
1065
|
border-radius: 2px 2px 2px 2px;
|
|
1086
1066
|
padding: 20px 10px;
|
|
1087
1067
|
}
|
|
1088
|
-
.nodeTitle[data-v-
|
|
1068
|
+
.nodeTitle[data-v-b01d3a50] {
|
|
1089
1069
|
width: 90px;
|
|
1090
1070
|
height: 15px;
|
|
1091
1071
|
font-weight: 400;
|
|
@@ -1100,7 +1080,7 @@
|
|
|
1100
1080
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1101
1081
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1102
1082
|
}
|
|
1103
|
-
.nodeContent[data-v-
|
|
1083
|
+
.nodeContent[data-v-b01d3a50] {
|
|
1104
1084
|
/* width: 100%; */
|
|
1105
1085
|
height: 15px;
|
|
1106
1086
|
font-weight: 400;
|
|
@@ -1115,19 +1095,39 @@
|
|
|
1115
1095
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1116
1096
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1117
1097
|
}
|
|
1118
|
-
.nodeContent-desc[data-v-
|
|
1098
|
+
.nodeContent-desc[data-v-b01d3a50]{
|
|
1119
1099
|
}
|
|
1120
|
-
.el-divider--horizontal[data-v-
|
|
1100
|
+
.el-divider--horizontal[data-v-b01d3a50] {
|
|
1121
1101
|
margin: 12px 0;
|
|
1122
1102
|
}
|
|
1123
|
-
.nodeView[data-v-
|
|
1103
|
+
.nodeView[data-v-b01d3a50] {
|
|
1124
1104
|
border: 1px solid #5a90f9;
|
|
1125
1105
|
background: #eef3fe;
|
|
1126
1106
|
}
|
|
1127
|
-
.nodeTitle[data-v-
|
|
1107
|
+
.nodeTitle[data-v-b01d3a50] {
|
|
1128
1108
|
width: 80px;
|
|
1129
1109
|
}
|
|
1130
|
-
|
|
1110
|
+
|
|
1111
|
+
.aaa[data-v-8bd72b80] {
|
|
1112
|
+
width: 300px;
|
|
1113
|
+
height: 200px;
|
|
1114
|
+
background: #ffffff;
|
|
1115
|
+
box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1116
|
+
border-radius: 2px 2px 2px 2px;
|
|
1117
|
+
}
|
|
1118
|
+
.content[data-v-8bd72b80] {
|
|
1119
|
+
width: 28px;
|
|
1120
|
+
height: 15px;
|
|
1121
|
+
font-weight: 400;
|
|
1122
|
+
font-size: 14px;
|
|
1123
|
+
color: #333333;
|
|
1124
|
+
line-height: 14px;
|
|
1125
|
+
text-align: left;
|
|
1126
|
+
font-style: normal;
|
|
1127
|
+
text-transform: none;
|
|
1128
|
+
padding: 5px 0px 4px 10px;
|
|
1129
|
+
}
|
|
1130
|
+
.nodeView[data-v-c176feb6] {
|
|
1131
1131
|
box-sizing: border-box;
|
|
1132
1132
|
margin: 10px 10px;
|
|
1133
1133
|
width: 180px;
|
|
@@ -1136,7 +1136,7 @@
|
|
|
1136
1136
|
border-radius: 2px 2px 2px 2px;
|
|
1137
1137
|
padding: 20px 10px;
|
|
1138
1138
|
}
|
|
1139
|
-
.nodeTitle[data-v-
|
|
1139
|
+
.nodeTitle[data-v-c176feb6] {
|
|
1140
1140
|
width: 90px;
|
|
1141
1141
|
height: 15px;
|
|
1142
1142
|
font-weight: 400;
|
|
@@ -1151,7 +1151,7 @@
|
|
|
1151
1151
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1152
1152
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1153
1153
|
}
|
|
1154
|
-
.nodeContent[data-v-
|
|
1154
|
+
.nodeContent[data-v-c176feb6] {
|
|
1155
1155
|
/* width: 100%; */
|
|
1156
1156
|
height: 15px;
|
|
1157
1157
|
font-weight: 400;
|
|
@@ -1166,19 +1166,20 @@
|
|
|
1166
1166
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1167
1167
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1168
1168
|
}
|
|
1169
|
-
.nodeContent-desc[data-v-
|
|
1169
|
+
.nodeContent-desc[data-v-c176feb6]{
|
|
1170
1170
|
}
|
|
1171
|
-
.el-divider--horizontal[data-v-
|
|
1171
|
+
.el-divider--horizontal[data-v-c176feb6] {
|
|
1172
1172
|
margin: 12px 0;
|
|
1173
1173
|
}
|
|
1174
|
-
.nodeView[data-v-
|
|
1174
|
+
.nodeView[data-v-c176feb6] {
|
|
1175
1175
|
border: 1px solid #5a90f9;
|
|
1176
|
-
background: #eef3fe;
|
|
1176
|
+
background: #eef3fe;
|
|
1177
|
+
width: 180px;
|
|
1178
|
+
min-height: 95px;
|
|
1177
1179
|
}
|
|
1178
|
-
.
|
|
1179
|
-
width: 80px;
|
|
1180
|
+
.nodeContent[data-v-c176feb6] {
|
|
1180
1181
|
}
|
|
1181
|
-
.nodeView[data-v-
|
|
1182
|
+
.nodeView[data-v-faa5a940] {
|
|
1182
1183
|
box-sizing: border-box;
|
|
1183
1184
|
margin: 10px 10px;
|
|
1184
1185
|
width: 180px;
|
|
@@ -1187,7 +1188,7 @@
|
|
|
1187
1188
|
border-radius: 2px 2px 2px 2px;
|
|
1188
1189
|
padding: 20px 10px;
|
|
1189
1190
|
}
|
|
1190
|
-
.nodeTitle[data-v-
|
|
1191
|
+
.nodeTitle[data-v-faa5a940] {
|
|
1191
1192
|
width: 90px;
|
|
1192
1193
|
height: 15px;
|
|
1193
1194
|
font-weight: 400;
|
|
@@ -1202,7 +1203,7 @@
|
|
|
1202
1203
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1203
1204
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1204
1205
|
}
|
|
1205
|
-
.nodeContent[data-v-
|
|
1206
|
+
.nodeContent[data-v-faa5a940] {
|
|
1206
1207
|
/* width: 100%; */
|
|
1207
1208
|
height: 15px;
|
|
1208
1209
|
font-weight: 400;
|
|
@@ -1217,28 +1218,21 @@
|
|
|
1217
1218
|
overflow: hidden; /* 隐藏超出div宽度的文本 */
|
|
1218
1219
|
text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
|
|
1219
1220
|
}
|
|
1220
|
-
.nodeContent-desc[data-v-
|
|
1221
|
+
.nodeContent-desc[data-v-faa5a940]{
|
|
1221
1222
|
}
|
|
1222
|
-
.el-divider--horizontal[data-v-
|
|
1223
|
+
.el-divider--horizontal[data-v-faa5a940] {
|
|
1223
1224
|
margin: 12px 0;
|
|
1224
1225
|
}
|
|
1225
|
-
.nodeView[data-v-
|
|
1226
|
+
.nodeView[data-v-faa5a940] {
|
|
1226
1227
|
border: 1px solid #5a90f9;
|
|
1227
|
-
background: #eef3fe;
|
|
1228
|
-
width: 180px;
|
|
1229
|
-
min-height: 95px;
|
|
1228
|
+
background: #eef3fe;
|
|
1230
1229
|
}
|
|
1231
|
-
.
|
|
1230
|
+
.nodeTitle[data-v-faa5a940] {
|
|
1231
|
+
width: 80px;
|
|
1232
1232
|
}
|
|
1233
1233
|
|
|
1234
|
-
.el-
|
|
1235
|
-
margin-
|
|
1236
|
-
}
|
|
1237
|
-
.el-input + .el-input[data-v-7fcf8a84] {
|
|
1238
|
-
margin-left: 10px;
|
|
1239
|
-
}
|
|
1240
|
-
.el-input + .el-button[data-v-7fcf8a84] {
|
|
1241
|
-
margin-left: 10px;
|
|
1234
|
+
.el-radio[data-v-1bbd6187] {
|
|
1235
|
+
margin-right: 10px;
|
|
1242
1236
|
}
|
|
1243
1237
|
|
|
1244
1238
|
.el-select + .el-input[data-v-3918f594] {
|
|
@@ -1251,10 +1245,6 @@
|
|
|
1251
1245
|
margin-left: 10px;
|
|
1252
1246
|
}
|
|
1253
1247
|
|
|
1254
|
-
.el-radio[data-v-1bbd6187] {
|
|
1255
|
-
margin-right: 10px;
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
1248
|
.el-radio[data-v-1ee0eb33] {
|
|
1259
1249
|
margin-right: 10px;
|
|
1260
1250
|
}
|
|
@@ -1276,6 +1266,16 @@
|
|
|
1276
1266
|
cursor: pointer;
|
|
1277
1267
|
}
|
|
1278
1268
|
|
|
1269
|
+
.el-select + .el-input[data-v-7fcf8a84] {
|
|
1270
|
+
margin-left: 10px;
|
|
1271
|
+
}
|
|
1272
|
+
.el-input + .el-input[data-v-7fcf8a84] {
|
|
1273
|
+
margin-left: 10px;
|
|
1274
|
+
}
|
|
1275
|
+
.el-input + .el-button[data-v-7fcf8a84] {
|
|
1276
|
+
margin-left: 10px;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
1279
|
[data-v-2d06523b] .el-upload {
|
|
1280
1280
|
width: 100%;
|
|
1281
1281
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "service-flow-designer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.33",
|
|
4
4
|
"description": "AgileBuilder Service Flow Designer",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@logicflow/layout": "1.2.0-alpha.16",
|
|
62
62
|
"@uiw/codemirror-themes-all": "^4.21.25",
|
|
63
63
|
"@vueuse/core": "^10.9.0",
|
|
64
|
-
"agilebuilder-ui": "1.0.
|
|
64
|
+
"agilebuilder-ui": "1.0.23",
|
|
65
65
|
"codemirror": "^6.0.1",
|
|
66
66
|
"nprogress": "^0.2.0",
|
|
67
67
|
"quill": "^2.0.2",
|