workflow-editor 0.0.81-up-tmp20 → 0.0.81-up-tmp21
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/index.full.min.js +1 -1
- package/es/style.css +109 -109
- package/es/workflow-history/index.mjs +4 -4
- package/lib/style.css +138 -138
- package/lib/workflow-history/index.cjs +4 -4
- package/package.json +1 -1
package/dist/index.full.min.js
CHANGED
|
@@ -2712,7 +2712,7 @@
|
|
|
2712
2712
|
const a2 = r.resolveComponent("wf-history-canvas");
|
|
2713
2713
|
return r.openBlock(), r.createElementBlock("div", sr, [r.createElementVNode("div", dr, [r.createElementVNode("section", null, [r.createVNode(a2, { onselectstart: "return false", process: e2.process, histories: e2.histories, "current-tasks": e2.currentTasks, "all-process-i18n": e2.allProcessI18n, "show-history": true, class: "canvas", onContextmenu: r.withModifiers(n2.showContextMenu, ["prevent"]) }, null, 8, ["process", "histories", "current-tasks", "all-process-i18n", "onContextmenu"])])])], 512);
|
|
2714
2714
|
}], ["__scopeId", "data-v-14c5e870"]]);
|
|
2715
|
-
|
|
2715
|
+
cr.install = function(e2) {
|
|
2716
2716
|
e2.component(cr.name, cr);
|
|
2717
2717
|
};
|
|
2718
2718
|
const mr = { WorkflowHistory: cr }, ur = { namespaced: true, state: { taches: [], transitions: [], startJoint: null, endJoint: null, isMovingTache: false, mouseDownPosition: null, isDrawingRegion: false, isMovingRegion: false, selectedTaches: [], selectedTransition: null, resizerToMove: null, draggerToMove: null, propertiesEditorFor: "", componentToDraw: "", controlPointToMove: null, formFields: [], formFieldsWithSub: [], contextMenuVisible: false, formCode: null, systemCode: null, systemVersion: null, processCode: null, processI18n: null, subtableConditionMap: null, propSettingKeyList: null, tableCode: null, isCreateDefinition: "", isHandleCreate: "", pageCode: null, sourceComponentType: "" }, getters: { taches: (e2) => e2.taches, transitions: (e2) => e2.transitions, startJoint: (e2) => e2.startJoint, endJoint: (e2) => e2.endJoint, isMovingTache: (e2) => e2.isMovingTache, mouseDownPosition: (e2) => e2.mouseDownPosition, isDrawingRegion: (e2) => e2.isDrawingRegion, isMovingRegion: (e2) => e2.isMovingRegion, selectedTaches: (e2) => e2.selectedTaches, selectedTransition: (e2) => e2.selectedTransition, resizerToMove: (e2) => e2.resizerToMove, draggerToMove: (e2) => e2.draggerToMove, propertiesEditorFor: (e2) => e2.propertiesEditorFor, componentToDraw: (e2) => e2.componentToDraw, controlPointToMove: (e2) => e2.controlPointToMove, formFields: (e2) => e2.formFields, formCode: (e2) => e2.formCode, formFieldsWithSub: (e2) => e2.formFieldsWithSub, contextMenuVisible: (e2) => e2.contextMenuVisible, systemCode: (e2) => e2.systemCode, processCode: (e2) => e2.processCode, processI18n: (e2) => e2.processI18n, subtableConditionMap: (e2) => e2.subtableConditionMap, propSettingKeyList: (e2) => e2.propSettingKeyList, systemVersion: (e2) => e2.systemVersion, tableCode: (e2) => e2.tableCode, isHandleCreate: (e2) => e2.isHandleCreate, isCreateDefinition: (e2) => e2.isCreateDefinition, pageCode: (e2) => e2.pageCode, sourceComponentType: (e2) => e2.sourceComponentType }, mutations: { setTaches(e2, t2) {
|
package/es/style.css
CHANGED
|
@@ -125,20 +125,6 @@ section[data-v-14c5e870] {
|
|
|
125
125
|
}
|
|
126
126
|
.canvas[data-v-14c5e870] .draggable {
|
|
127
127
|
cursor: default;
|
|
128
|
-
}h3[data-v-0d941719] {
|
|
129
|
-
color: #999999;
|
|
130
|
-
margin: 0;
|
|
131
|
-
padding: 0;
|
|
132
|
-
font-weight: bold;
|
|
133
|
-
font-size: 18px;
|
|
134
|
-
}
|
|
135
|
-
.el-button[data-v-0d941719] {
|
|
136
|
-
margin: 6px 0;
|
|
137
|
-
min-width: 110px;
|
|
138
|
-
padding: 9px 15px;
|
|
139
|
-
}
|
|
140
|
-
.el-button i[data-v-0d941719] {
|
|
141
|
-
padding-right: 4px;
|
|
142
128
|
}
|
|
143
129
|
#svg{
|
|
144
130
|
/* border:1px solid red; */
|
|
@@ -186,6 +172,51 @@ g text{
|
|
|
186
172
|
.current-tache text{
|
|
187
173
|
fill: white
|
|
188
174
|
}
|
|
175
|
+
h3[data-v-0d941719] {
|
|
176
|
+
color: #999999;
|
|
177
|
+
margin: 0;
|
|
178
|
+
padding: 0;
|
|
179
|
+
font-weight: bold;
|
|
180
|
+
font-size: 18px;
|
|
181
|
+
}
|
|
182
|
+
.el-button[data-v-0d941719] {
|
|
183
|
+
margin: 6px 0;
|
|
184
|
+
min-width: 110px;
|
|
185
|
+
padding: 9px 15px;
|
|
186
|
+
}
|
|
187
|
+
.el-button i[data-v-0d941719] {
|
|
188
|
+
padding-right: 4px;
|
|
189
|
+
}
|
|
190
|
+
#svg{
|
|
191
|
+
/* border:1px solid red; */
|
|
192
|
+
background: white;
|
|
193
|
+
background-image:
|
|
194
|
+
linear-gradient(rgba(242,242,242,.7) 1px, transparent 0),
|
|
195
|
+
linear-gradient(90deg, rgba(242,242,242,.7) 1px, transparent 0),
|
|
196
|
+
linear-gradient(#e5e5e5 1px, transparent 0),
|
|
197
|
+
linear-gradient(90deg,#e5e5e5 1px, transparent 0);
|
|
198
|
+
background-size:
|
|
199
|
+
15px 15px,
|
|
200
|
+
15px 15px,
|
|
201
|
+
75px 75px,
|
|
202
|
+
75px 75px;
|
|
203
|
+
}
|
|
204
|
+
g{
|
|
205
|
+
font-size: 16px;
|
|
206
|
+
}
|
|
207
|
+
g text{
|
|
208
|
+
dominant-baseline: middle;
|
|
209
|
+
}
|
|
210
|
+
.selected{
|
|
211
|
+
fill: #fff;
|
|
212
|
+
stroke: #f00;
|
|
213
|
+
stroke-width: 2;
|
|
214
|
+
}
|
|
215
|
+
.task-tache{
|
|
216
|
+
fill: #fff;
|
|
217
|
+
stroke: #666;
|
|
218
|
+
stroke-width: 2;
|
|
219
|
+
}
|
|
189
220
|
|
|
190
221
|
.svg-icon {
|
|
191
222
|
width: 1em;
|
|
@@ -223,43 +254,17 @@ li[data-v-7e8a1cf6] {
|
|
|
223
254
|
li[data-v-7e8a1cf6] {
|
|
224
255
|
list-style-type: none;
|
|
225
256
|
}
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
background-image:
|
|
230
|
-
linear-gradient(rgba(242,242,242,.7) 1px, transparent 0),
|
|
231
|
-
linear-gradient(90deg, rgba(242,242,242,.7) 1px, transparent 0),
|
|
232
|
-
linear-gradient(#e5e5e5 1px, transparent 0),
|
|
233
|
-
linear-gradient(90deg,#e5e5e5 1px, transparent 0);
|
|
234
|
-
background-size:
|
|
235
|
-
15px 15px,
|
|
236
|
-
15px 15px,
|
|
237
|
-
75px 75px,
|
|
238
|
-
75px 75px;
|
|
239
|
-
}
|
|
240
|
-
g{
|
|
241
|
-
font-size: 16px;
|
|
242
|
-
}
|
|
243
|
-
g text{
|
|
244
|
-
dominant-baseline: middle;
|
|
245
|
-
}
|
|
246
|
-
.selected{
|
|
247
|
-
fill: #fff;
|
|
248
|
-
stroke: #f00;
|
|
249
|
-
stroke-width: 2;
|
|
250
|
-
}
|
|
251
|
-
.task-tache{
|
|
252
|
-
fill: #fff;
|
|
253
|
-
stroke: #666;
|
|
254
|
-
stroke-width: 2;
|
|
257
|
+
.start{
|
|
258
|
+
stroke-width: 0;
|
|
259
|
+
fill:#fff;
|
|
255
260
|
}
|
|
256
261
|
|
|
257
|
-
.
|
|
262
|
+
.decision{
|
|
258
263
|
stroke-width: 0;
|
|
259
264
|
fill:#fff;
|
|
260
265
|
}
|
|
261
266
|
|
|
262
|
-
.
|
|
267
|
+
.end{
|
|
263
268
|
stroke-width: 0;
|
|
264
269
|
fill:#fff;
|
|
265
270
|
}
|
|
@@ -269,7 +274,7 @@ g text{
|
|
|
269
274
|
fill:#fff;
|
|
270
275
|
}
|
|
271
276
|
|
|
272
|
-
.decision{
|
|
277
|
+
.human-decision{
|
|
273
278
|
stroke-width: 0;
|
|
274
279
|
fill:#fff;
|
|
275
280
|
}
|
|
@@ -279,9 +284,23 @@ g text{
|
|
|
279
284
|
fill:#fff;
|
|
280
285
|
}
|
|
281
286
|
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
|
|
287
|
+
.transition[data-v-a1576cad] {
|
|
288
|
+
stroke-width: 2;
|
|
289
|
+
stroke: #666;
|
|
290
|
+
fill: none;
|
|
291
|
+
cursor: pointer;
|
|
292
|
+
}
|
|
293
|
+
.selected[data-v-a1576cad] {
|
|
294
|
+
stroke: red;
|
|
295
|
+
}
|
|
296
|
+
.transition-dragger[data-v-a1576cad] {
|
|
297
|
+
stroke: red;
|
|
298
|
+
stroke-width: 1;
|
|
299
|
+
fill: white;
|
|
300
|
+
cursor: move;
|
|
301
|
+
}
|
|
302
|
+
.no-events[data-v-a1576cad] {
|
|
303
|
+
pointer-events: none;
|
|
285
304
|
}
|
|
286
305
|
#_subprocess-content[data-v-2b195c05] {
|
|
287
306
|
width: 100%;
|
|
@@ -301,23 +320,16 @@ g text{
|
|
|
301
320
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
302
321
|
word-break: break-all;
|
|
303
322
|
}
|
|
304
|
-
.transition
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
stroke: red;
|
|
315
|
-
stroke-width: 1;
|
|
316
|
-
fill: white;
|
|
317
|
-
cursor: move;
|
|
318
|
-
}
|
|
319
|
-
.no-events[data-v-a1576cad] {
|
|
320
|
-
pointer-events: none;
|
|
323
|
+
.virtual-transition{
|
|
324
|
+
stroke-width: 2;
|
|
325
|
+
stroke:#000;
|
|
326
|
+
stroke-dasharray: 2 2;
|
|
327
|
+
fill: none;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
331
|
+
.properties-editor[data-v-1651d82a] .el-dialog__body {
|
|
332
|
+
padding-top: 0;
|
|
321
333
|
}
|
|
322
334
|
|
|
323
335
|
.selection-region{
|
|
@@ -334,18 +346,6 @@ g text{
|
|
|
334
346
|
pointer-events:none;
|
|
335
347
|
}
|
|
336
348
|
|
|
337
|
-
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
338
|
-
.properties-editor[data-v-1651d82a] .el-dialog__body {
|
|
339
|
-
padding-top: 0;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.virtual-transition{
|
|
343
|
-
stroke-width: 2;
|
|
344
|
-
stroke:#000;
|
|
345
|
-
stroke-dasharray: 2 2;
|
|
346
|
-
fill: none;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
349
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
350
350
|
.properties-editor[data-v-0e44fe8c] .el-dialog__body{
|
|
351
351
|
padding-top: 0
|
|
@@ -356,11 +356,6 @@ g text{
|
|
|
356
356
|
padding-top: 0
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
-
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
360
|
-
.properties-editor[data-v-adb7c2ff] .el-dialog__body{
|
|
361
|
-
padding-top: 0
|
|
362
|
-
}
|
|
363
|
-
|
|
364
359
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
365
360
|
.properties-editor[data-v-bd66d235] .el-dialog__body{
|
|
366
361
|
padding-top: 0
|
|
@@ -380,6 +375,11 @@ g text{
|
|
|
380
375
|
stroke-width:1px;
|
|
381
376
|
fill-opacity: 1;
|
|
382
377
|
}
|
|
378
|
+
|
|
379
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
380
|
+
.properties-editor[data-v-adb7c2ff] .el-dialog__body{
|
|
381
|
+
padding-top: 0
|
|
382
|
+
}
|
|
383
383
|
|
|
384
384
|
.resizer{
|
|
385
385
|
stroke: blue;
|
|
@@ -387,12 +387,6 @@ g text{
|
|
|
387
387
|
fill: white;
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
-
.percent[data-v-a219b06d] {
|
|
391
|
-
margin-left: 10px;
|
|
392
|
-
color: red;
|
|
393
|
-
font-size: 1.2em;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
390
|
.control-point[data-v-0ff53a0a]{
|
|
397
391
|
fill: #fff;
|
|
398
392
|
cursor: move;
|
|
@@ -412,6 +406,12 @@ g text{
|
|
|
412
406
|
.el-checkbox[data-v-c019538f]{
|
|
413
407
|
margin-left: 20px;
|
|
414
408
|
}
|
|
409
|
+
|
|
410
|
+
.percent[data-v-a219b06d] {
|
|
411
|
+
margin-left: 10px;
|
|
412
|
+
color: red;
|
|
413
|
+
font-size: 1.2em;
|
|
414
|
+
}
|
|
415
415
|
ul[data-v-39fac73c] {
|
|
416
416
|
margin: 0;
|
|
417
417
|
padding: 0;
|
|
@@ -422,22 +422,36 @@ ul li[data-v-39fac73c] {
|
|
|
422
422
|
.sub-li[data-v-39fac73c] {
|
|
423
423
|
padding-left: 10px;
|
|
424
424
|
}
|
|
425
|
-
.el-checkbox[data-v-5fb29fef]{
|
|
426
|
-
margin-left: 20px;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
425
|
.percent[data-v-c1c7385b]{
|
|
430
426
|
margin-left: 10px;
|
|
431
427
|
color:red;
|
|
432
428
|
font-size:1.2em;
|
|
433
429
|
}
|
|
434
430
|
|
|
431
|
+
.el-checkbox[data-v-5fb29fef]{
|
|
432
|
+
margin-left: 20px;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
435
|
.percent[data-v-6aef99ff]{
|
|
436
436
|
margin-left: 10px;
|
|
437
437
|
color:red;
|
|
438
438
|
font-size:1.2em;
|
|
439
439
|
}
|
|
440
|
-
|
|
440
|
+
.group[data-v-98300543] {
|
|
441
|
+
font-size: 14px;
|
|
442
|
+
width: 100%;
|
|
443
|
+
}
|
|
444
|
+
.item[data-v-98300543] {
|
|
445
|
+
float: left;
|
|
446
|
+
list-style-type: none;
|
|
447
|
+
width: 33.33%;
|
|
448
|
+
margin-bottom: 18px;
|
|
449
|
+
}
|
|
450
|
+
.item-content[data-v-98300543] {
|
|
451
|
+
height: calc(100vh - 300px);
|
|
452
|
+
padding-left: 20px;
|
|
453
|
+
overflow: auto;
|
|
454
|
+
}
|
|
441
455
|
.el-tag + .el-tag[data-v-aaf48aff] {
|
|
442
456
|
margin-left: 10px;
|
|
443
457
|
}
|
|
@@ -459,21 +473,7 @@ select[data-v-aaf48aff]{
|
|
|
459
473
|
height: 32px;
|
|
460
474
|
line-height: 32px;
|
|
461
475
|
}
|
|
462
|
-
|
|
463
|
-
font-size: 14px;
|
|
464
|
-
width: 100%;
|
|
465
|
-
}
|
|
466
|
-
.item[data-v-98300543] {
|
|
467
|
-
float: left;
|
|
468
|
-
list-style-type: none;
|
|
469
|
-
width: 33.33%;
|
|
470
|
-
margin-bottom: 18px;
|
|
471
|
-
}
|
|
472
|
-
.item-content[data-v-98300543] {
|
|
473
|
-
height: calc(100vh - 300px);
|
|
474
|
-
padding-left: 20px;
|
|
475
|
-
overflow: auto;
|
|
476
|
-
}
|
|
476
|
+
|
|
477
477
|
span[data-v-4e29ea06] {
|
|
478
478
|
margin: 0 10px;
|
|
479
479
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import o from "./src/workflow-history.vue.mjs";
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
o.install = function(t2) {
|
|
3
|
+
t2.component(o.name, o);
|
|
4
4
|
};
|
|
5
|
-
const
|
|
5
|
+
const t = { WorkflowHistory: o };
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
t as default
|
|
8
8
|
};
|
package/lib/style.css
CHANGED
|
@@ -125,29 +125,7 @@ pre[data-v-865cb4ee] {
|
|
|
125
125
|
/* 去掉卡片和tab表头的距离 */
|
|
126
126
|
[data-v-865cb4ee] .el-tabs__header {
|
|
127
127
|
margin: 0;
|
|
128
|
-
}h3[data-v-0d941719] {
|
|
129
|
-
color: #999999;
|
|
130
|
-
margin: 0;
|
|
131
|
-
padding: 0;
|
|
132
|
-
font-weight: bold;
|
|
133
|
-
font-size: 18px;
|
|
134
|
-
}
|
|
135
|
-
.el-button[data-v-0d941719] {
|
|
136
|
-
margin: 6px 0;
|
|
137
|
-
min-width: 110px;
|
|
138
|
-
padding: 9px 15px;
|
|
139
128
|
}
|
|
140
|
-
.el-button i[data-v-0d941719] {
|
|
141
|
-
padding-right: 4px;
|
|
142
|
-
}
|
|
143
|
-
.svg-icon {
|
|
144
|
-
width: 1em;
|
|
145
|
-
height: 1em;
|
|
146
|
-
vertical-align: -0.15em;
|
|
147
|
-
fill: currentColor;
|
|
148
|
-
overflow: hidden;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
129
|
#svg{
|
|
152
130
|
/* border:1px solid red; */
|
|
153
131
|
background: white;
|
|
@@ -194,34 +172,20 @@ g text{
|
|
|
194
172
|
.current-tache text{
|
|
195
173
|
fill: white
|
|
196
174
|
}
|
|
197
|
-
|
|
198
|
-
color: #
|
|
199
|
-
}
|
|
200
|
-
.context-menu[data-v-7e8a1cf6] {
|
|
201
|
-
position: fixed;
|
|
202
|
-
background: #fff;
|
|
203
|
-
z-index: 999;
|
|
204
|
-
padding: 5px;
|
|
175
|
+
h3[data-v-0d941719] {
|
|
176
|
+
color: #999999;
|
|
205
177
|
margin: 0;
|
|
178
|
+
padding: 0;
|
|
179
|
+
font-weight: bold;
|
|
180
|
+
font-size: 18px;
|
|
206
181
|
}
|
|
207
|
-
.
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
text-align: left;
|
|
212
|
-
color: #1a1a1a;
|
|
213
|
-
}
|
|
214
|
-
.context-menu li[data-v-7e8a1cf6]:hover {
|
|
215
|
-
background: #42b983;
|
|
216
|
-
color: #fff;
|
|
217
|
-
}
|
|
218
|
-
.context-menu[data-v-7e8a1cf6] {
|
|
219
|
-
border: 1px solid #eee;
|
|
220
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
221
|
-
border-radius: 5px;
|
|
182
|
+
.el-button[data-v-0d941719] {
|
|
183
|
+
margin: 6px 0;
|
|
184
|
+
min-width: 110px;
|
|
185
|
+
padding: 9px 15px;
|
|
222
186
|
}
|
|
223
|
-
|
|
224
|
-
|
|
187
|
+
.el-button i[data-v-0d941719] {
|
|
188
|
+
padding-right: 4px;
|
|
225
189
|
}
|
|
226
190
|
#svg{
|
|
227
191
|
/* border:1px solid red; */
|
|
@@ -254,11 +218,42 @@ g text{
|
|
|
254
218
|
stroke-width: 2;
|
|
255
219
|
}
|
|
256
220
|
|
|
257
|
-
.
|
|
258
|
-
|
|
259
|
-
|
|
221
|
+
.svg-icon {
|
|
222
|
+
width: 1em;
|
|
223
|
+
height: 1em;
|
|
224
|
+
vertical-align: -0.15em;
|
|
225
|
+
fill: currentColor;
|
|
226
|
+
overflow: hidden;
|
|
260
227
|
}
|
|
261
|
-
|
|
228
|
+
li[data-v-7e8a1cf6] {
|
|
229
|
+
color: #333;
|
|
230
|
+
}
|
|
231
|
+
.context-menu[data-v-7e8a1cf6] {
|
|
232
|
+
position: fixed;
|
|
233
|
+
background: #fff;
|
|
234
|
+
z-index: 999;
|
|
235
|
+
padding: 5px;
|
|
236
|
+
margin: 0;
|
|
237
|
+
}
|
|
238
|
+
.context-menu li[data-v-7e8a1cf6] {
|
|
239
|
+
min-width: 75px;
|
|
240
|
+
height: 28px;
|
|
241
|
+
line-height: 28px;
|
|
242
|
+
text-align: left;
|
|
243
|
+
color: #1a1a1a;
|
|
244
|
+
}
|
|
245
|
+
.context-menu li[data-v-7e8a1cf6]:hover {
|
|
246
|
+
background: #42b983;
|
|
247
|
+
color: #fff;
|
|
248
|
+
}
|
|
249
|
+
.context-menu[data-v-7e8a1cf6] {
|
|
250
|
+
border: 1px solid #eee;
|
|
251
|
+
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
252
|
+
border-radius: 5px;
|
|
253
|
+
}
|
|
254
|
+
li[data-v-7e8a1cf6] {
|
|
255
|
+
list-style-type: none;
|
|
256
|
+
}
|
|
262
257
|
.start{
|
|
263
258
|
stroke-width: 0;
|
|
264
259
|
fill:#fff;
|
|
@@ -269,7 +264,7 @@ g text{
|
|
|
269
264
|
fill:#fff;
|
|
270
265
|
}
|
|
271
266
|
|
|
272
|
-
.
|
|
267
|
+
.end{
|
|
273
268
|
stroke-width: 0;
|
|
274
269
|
fill:#fff;
|
|
275
270
|
}
|
|
@@ -283,6 +278,30 @@ g text{
|
|
|
283
278
|
stroke-width: 0;
|
|
284
279
|
fill:#fff;
|
|
285
280
|
}
|
|
281
|
+
|
|
282
|
+
.decision{
|
|
283
|
+
stroke-width: 0;
|
|
284
|
+
fill:#fff;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.transition[data-v-a1576cad] {
|
|
288
|
+
stroke-width: 2;
|
|
289
|
+
stroke: #666;
|
|
290
|
+
fill: none;
|
|
291
|
+
cursor: pointer;
|
|
292
|
+
}
|
|
293
|
+
.selected[data-v-a1576cad] {
|
|
294
|
+
stroke: red;
|
|
295
|
+
}
|
|
296
|
+
.transition-dragger[data-v-a1576cad] {
|
|
297
|
+
stroke: red;
|
|
298
|
+
stroke-width: 1;
|
|
299
|
+
fill: white;
|
|
300
|
+
cursor: move;
|
|
301
|
+
}
|
|
302
|
+
.no-events[data-v-a1576cad] {
|
|
303
|
+
pointer-events: none;
|
|
304
|
+
}
|
|
286
305
|
#_subprocess-content[data-v-2b195c05] {
|
|
287
306
|
width: 100%;
|
|
288
307
|
height: calc(100vh - 200px);
|
|
@@ -301,23 +320,21 @@ g text{
|
|
|
301
320
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
302
321
|
word-break: break-all;
|
|
303
322
|
}
|
|
304
|
-
.transition
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
.no-events[data-v-a1576cad] {
|
|
320
|
-
pointer-events: none;
|
|
323
|
+
.virtual-transition{
|
|
324
|
+
stroke-width: 2;
|
|
325
|
+
stroke:#000;
|
|
326
|
+
stroke-dasharray: 2 2;
|
|
327
|
+
fill: none;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
331
|
+
.properties-editor[data-v-1651d82a] .el-dialog__body {
|
|
332
|
+
padding-top: 0;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
336
|
+
.properties-editor[data-v-0e44fe8c] .el-dialog__body{
|
|
337
|
+
padding-top: 0
|
|
321
338
|
}
|
|
322
339
|
|
|
323
340
|
.selection-region{
|
|
@@ -334,33 +351,11 @@ g text{
|
|
|
334
351
|
pointer-events:none;
|
|
335
352
|
}
|
|
336
353
|
|
|
337
|
-
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
338
|
-
.properties-editor[data-v-1651d82a] .el-dialog__body {
|
|
339
|
-
padding-top: 0;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
.virtual-transition{
|
|
343
|
-
stroke-width: 2;
|
|
344
|
-
stroke:#000;
|
|
345
|
-
stroke-dasharray: 2 2;
|
|
346
|
-
fill: none;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
350
|
-
.properties-editor[data-v-0e44fe8c] .el-dialog__body{
|
|
351
|
-
padding-top: 0
|
|
352
|
-
}
|
|
353
|
-
|
|
354
354
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
355
355
|
.properties-editor[data-v-af76d417] .el-dialog__body{
|
|
356
356
|
padding-top: 0
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
-
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
360
|
-
.properties-editor[data-v-adb7c2ff] .el-dialog__body{
|
|
361
|
-
padding-top: 0
|
|
362
|
-
}
|
|
363
|
-
|
|
364
359
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
365
360
|
.properties-editor[data-v-bd66d235] .el-dialog__body{
|
|
366
361
|
padding-top: 0
|
|
@@ -380,27 +375,36 @@ g text{
|
|
|
380
375
|
stroke-width:1px;
|
|
381
376
|
fill-opacity: 1;
|
|
382
377
|
}
|
|
378
|
+
|
|
379
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
380
|
+
.properties-editor[data-v-adb7c2ff] .el-dialog__body{
|
|
381
|
+
padding-top: 0
|
|
382
|
+
}
|
|
383
383
|
|
|
384
|
-
.
|
|
384
|
+
.resizer{
|
|
385
|
+
stroke: blue;
|
|
386
|
+
stroke-width: 1;
|
|
387
|
+
fill: white;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.control-point[data-v-788fb0ae]{
|
|
385
391
|
fill: #fff;
|
|
386
392
|
cursor: move;
|
|
387
393
|
}
|
|
388
|
-
.control-line[data-v-
|
|
394
|
+
.control-line[data-v-788fb0ae] {
|
|
389
395
|
stroke-dasharray: 2 2
|
|
390
396
|
}
|
|
391
397
|
|
|
392
|
-
.control-point[data-v-
|
|
398
|
+
.control-point[data-v-0ff53a0a]{
|
|
393
399
|
fill: #fff;
|
|
394
400
|
cursor: move;
|
|
395
401
|
}
|
|
396
|
-
.control-line[data-v-
|
|
402
|
+
.control-line[data-v-0ff53a0a] {
|
|
397
403
|
stroke-dasharray: 2 2
|
|
398
404
|
}
|
|
399
405
|
|
|
400
|
-
.
|
|
401
|
-
|
|
402
|
-
stroke-width: 1;
|
|
403
|
-
fill: white;
|
|
406
|
+
.el-checkbox[data-v-c019538f]{
|
|
407
|
+
margin-left: 20px;
|
|
404
408
|
}
|
|
405
409
|
|
|
406
410
|
.percent[data-v-a219b06d] {
|
|
@@ -408,10 +412,6 @@ g text{
|
|
|
408
412
|
color: red;
|
|
409
413
|
font-size: 1.2em;
|
|
410
414
|
}
|
|
411
|
-
|
|
412
|
-
.el-checkbox[data-v-c019538f]{
|
|
413
|
-
margin-left: 20px;
|
|
414
|
-
}
|
|
415
415
|
ul[data-v-39fac73c] {
|
|
416
416
|
margin: 0;
|
|
417
417
|
padding: 0;
|
|
@@ -422,22 +422,36 @@ ul li[data-v-39fac73c] {
|
|
|
422
422
|
.sub-li[data-v-39fac73c] {
|
|
423
423
|
padding-left: 10px;
|
|
424
424
|
}
|
|
425
|
-
.el-checkbox[data-v-5fb29fef]{
|
|
426
|
-
margin-left: 20px;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
425
|
.percent[data-v-c1c7385b]{
|
|
430
426
|
margin-left: 10px;
|
|
431
427
|
color:red;
|
|
432
428
|
font-size:1.2em;
|
|
433
429
|
}
|
|
434
430
|
|
|
431
|
+
.el-checkbox[data-v-5fb29fef]{
|
|
432
|
+
margin-left: 20px;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
435
|
.percent[data-v-6aef99ff]{
|
|
436
436
|
margin-left: 10px;
|
|
437
437
|
color:red;
|
|
438
438
|
font-size:1.2em;
|
|
439
439
|
}
|
|
440
|
-
|
|
440
|
+
.group[data-v-98300543] {
|
|
441
|
+
font-size: 14px;
|
|
442
|
+
width: 100%;
|
|
443
|
+
}
|
|
444
|
+
.item[data-v-98300543] {
|
|
445
|
+
float: left;
|
|
446
|
+
list-style-type: none;
|
|
447
|
+
width: 33.33%;
|
|
448
|
+
margin-bottom: 18px;
|
|
449
|
+
}
|
|
450
|
+
.item-content[data-v-98300543] {
|
|
451
|
+
height: calc(100vh - 300px);
|
|
452
|
+
padding-left: 20px;
|
|
453
|
+
overflow: auto;
|
|
454
|
+
}
|
|
441
455
|
.el-tag + .el-tag[data-v-aaf48aff] {
|
|
442
456
|
margin-left: 10px;
|
|
443
457
|
}
|
|
@@ -459,25 +473,24 @@ select[data-v-aaf48aff]{
|
|
|
459
473
|
height: 32px;
|
|
460
474
|
line-height: 32px;
|
|
461
475
|
}
|
|
462
|
-
|
|
463
|
-
font-size: 14px;
|
|
464
|
-
width: 100%;
|
|
465
|
-
}
|
|
466
|
-
.item[data-v-98300543] {
|
|
467
|
-
float: left;
|
|
468
|
-
list-style-type: none;
|
|
469
|
-
width: 33.33%;
|
|
470
|
-
margin-bottom: 18px;
|
|
471
|
-
}
|
|
472
|
-
.item-content[data-v-98300543] {
|
|
473
|
-
height: calc(100vh - 300px);
|
|
474
|
-
padding-left: 20px;
|
|
475
|
-
overflow: auto;
|
|
476
|
-
}
|
|
476
|
+
|
|
477
477
|
span[data-v-4e29ea06] {
|
|
478
478
|
margin: 0 10px;
|
|
479
479
|
}
|
|
480
|
-
|
|
480
|
+
#appContainer[data-v-9458f3bf] .el-checkbox {
|
|
481
|
+
display: block;
|
|
482
|
+
}
|
|
483
|
+
#appContainer[data-v-9458f3bf] .el-transfer-panel {
|
|
484
|
+
width: 400px;
|
|
485
|
+
}
|
|
486
|
+
#appContainer[data-v-9458f3bf] .ellipsis {
|
|
487
|
+
display: inline-block;
|
|
488
|
+
overflow: hidden;
|
|
489
|
+
text-overflow: ellipsis;
|
|
490
|
+
white-space: nowrap;
|
|
491
|
+
word-break: keep-all;
|
|
492
|
+
width: 55%;
|
|
493
|
+
}
|
|
481
494
|
#custTabOne[data-v-7feaa2da] .el-tabs__content {
|
|
482
495
|
height: 500px;
|
|
483
496
|
}
|
|
@@ -503,20 +516,7 @@ span[data-v-4e29ea06] {
|
|
|
503
516
|
.inline-input-custom {
|
|
504
517
|
width : 90%
|
|
505
518
|
}
|
|
506
|
-
|
|
507
|
-
display: block;
|
|
508
|
-
}
|
|
509
|
-
#appContainer[data-v-9458f3bf] .el-transfer-panel {
|
|
510
|
-
width: 400px;
|
|
511
|
-
}
|
|
512
|
-
#appContainer[data-v-9458f3bf] .ellipsis {
|
|
513
|
-
display: inline-block;
|
|
514
|
-
overflow: hidden;
|
|
515
|
-
text-overflow: ellipsis;
|
|
516
|
-
white-space: nowrap;
|
|
517
|
-
word-break: keep-all;
|
|
518
|
-
width: 55%;
|
|
519
|
-
}
|
|
519
|
+
|
|
520
520
|
.searchResult {
|
|
521
521
|
color:red
|
|
522
522
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const o = require("./src/workflow-history.vue.cjs");
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
o.install = function(s2) {
|
|
4
|
+
s2.component(o.name, o);
|
|
5
5
|
};
|
|
6
|
-
const
|
|
7
|
-
module.exports =
|
|
6
|
+
const s = { WorkflowHistory: o };
|
|
7
|
+
module.exports = s;
|