Your Name
2022-06-27 0a3027eccd3b0bb6542e5fc831f7e02740dcfc95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
<template>
    <div class="workflow-container">
        <div class="workflow-mask" v-if="isShow"></div>
        <div class="layout-view-bg-white flex" :style="{ height: `calc(100vh - ${setViewHeight}` }">
            <div class="workflow">
                <!-- 顶部工具栏 -->
                <Tool @tool="onToolClick" />
 
                <!-- 左侧导航区 -->
                <div class="workflow-content">
                    <div class="workflow-left">
                        <el-scrollbar>
                            <div
                                ref="leftNavRefs"
                                v-for="(val, key) in leftNavList"
                                :key="val.id"
                                :style="{ height: val.isOpen ? 'auto' : '50px', overflow: 'hidden' }"
                                class="workflow-left-id"
                            >
                                <div class="workflow-left-title" @click="onTitleClick(val)">
                                    <span>{{ val.title }}</span>
                                    <SvgIcon :name="val.isOpen ? 'ele-ArrowDown' : 'ele-ArrowRight'" />
                                </div>
                                <div class="workflow-left-item" v-for="(v, k) in val.children" :key="k" :data-name="v.name" :data-icon="v.icon" :data-id="v.id">
                                    <div class="workflow-left-item-icon">
                                        <SvgIcon :name="v.icon" class="workflow-icon-drag" />
                                        <div class="font10 pl5 name">{{ v.name }}</div>
                                    </div>
                                </div>
                            </div>
                        </el-scrollbar>
                    </div>
 
                    <!-- 右侧绘画区 -->
                    <div class="workflow-right" ref="workflowRightRef">
                        <div
                            v-for="(v, k) in jsplumbData.nodeList"
                            :key="v.nodeId"
                            :id="v.nodeId"
                            :data-node-id="v.nodeId"
                            :class="v.class"
                            :style="{ left: v.left, top: v.top }"
                            @click="onItemCloneClick(k)"
                            @contextmenu.prevent="onContextmenu(v, k, $event)"
                        >
                            <div class="workflow-right-box" :class="{ 'workflow-right-active': jsPlumbNodeIndex === k }">
                                <div class="workflow-left-item-icon">
                                    <SvgIcon :name="v.icon" class="workflow-icon-drag" />
                                    <div class="font10 pl5 name">{{ v.name }}</div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
 
        <!-- 节点右键菜单 -->
        <Contextmenu :dropdown="dropdownNode" ref="contextmenuNodeRef" @current="onCurrentNodeClick" />
        <!-- 线右键菜单 -->
        <Contextmenu :dropdown="dropdownLine" ref="contextmenuLineRef" @current="onCurrentLineClick" />
        <!-- 抽屉表单、线 -->
        <Drawer ref="drawerRef" @label="setLineLabel" @node="setNodeContent" />
 
        <!-- 顶部工具栏-帮助弹窗 -->
        <Help ref="helpRef" />
    </div>
</template>
 
<script lang="ts">
import { defineComponent, toRefs, reactive, computed, onMounted, onUnmounted, nextTick, ref } from 'vue';
import { ElMessage, ElMessageBox } from 'element-plus';
import { jsPlumb } from 'jsplumb';
import Sortable from 'sortablejs';
import { storeToRefs } from 'pinia';
import { useThemeConfig } from '/@/stores/themeConfig';
import { useTagsViewRoutes } from '/@/stores/tagsViewRoutes';
import Tool from './component/tool/index.vue';
import Help from './component/tool/help.vue';
import Contextmenu from './component/contextmenu/index.vue';
import Drawer from './component/drawer/index.vue';
import commonFunction from '/@/utils/commonFunction';
import { leftNavList } from './js/mock';
import { jsplumbDefaults, jsplumbMakeSource, jsplumbMakeTarget, jsplumbConnect } from './js/config';
 
// 定义接口来定义对象的类型
interface NodeListState {
    id: string | number;
    nodeId: string | undefined;
    class: HTMLElement | string;
    left: number | string;
    top: number | string;
    icon: string;
    name: string;
}
interface LineListState {
    sourceId: string;
    targetId: string;
    label: string;
}
interface XyState {
    x: string | number;
    y: string | number;
}
interface WorkflowState {
    workflowRightRef: HTMLDivElement | null;
    leftNavRefs: any[];
    leftNavList: any[];
    dropdownNode: XyState;
    dropdownLine: XyState;
    isShow: boolean;
    jsPlumb: any;
    jsPlumbNodeIndex: null | number;
    jsplumbDefaults: any;
    jsplumbMakeSource: any;
    jsplumbMakeTarget: any;
    jsplumbConnect: any;
    jsplumbData: {
        nodeList: Array<NodeListState>;
        lineList: Array<LineListState>;
    };
}
 
export default defineComponent({
    name: 'pagesWorkflow',
    components: { Tool, Contextmenu, Drawer, Help },
    setup() {
        const contextmenuNodeRef = ref();
        const contextmenuLineRef = ref();
        const drawerRef = ref();
        const helpRef = ref();
        const stores = useTagsViewRoutes();
        const storesThemeConfig = useThemeConfig();
        const { themeConfig } = storeToRefs(storesThemeConfig);
        const { isTagsViewCurrenFull } = storeToRefs(stores);
        const { copyText } = commonFunction();
        const state = reactive<WorkflowState>({
            workflowRightRef: null as HTMLDivElement | null,
            leftNavRefs: [],
            leftNavList: [],
            dropdownNode: { x: '', y: '' },
            dropdownLine: { x: '', y: '' },
            isShow: false,
            jsPlumb: null,
            jsPlumbNodeIndex: null,
            jsplumbDefaults,
            jsplumbMakeSource,
            jsplumbMakeTarget,
            jsplumbConnect,
            jsplumbData: {
                nodeList: [],
                lineList: [],
            },
        });
        // 设置 view 的高度
        const setViewHeight = computed(() => {
            let { isTagsview } = themeConfig.value;
            if (isTagsViewCurrenFull.value) {
                return `30px`;
            } else {
                if (isTagsview) return `114px`;
                else return `80px`;
            }
        });
        // 设置 宽度小于 768,不支持操
        const setClientWidth = () => {
            const clientWidth = document.body.clientWidth;
            clientWidth < 768 ? (state.isShow = true) : (state.isShow = false);
        };
        // 左侧导航-数据初始化
        const initLeftNavList = () => {
            state.leftNavList = leftNavList;
            state.jsplumbData = {
                nodeList: [
                    { nodeId: 'huej738hbji', left: '148px', top: '93px', class: 'workflow-right-clone', icon: 'iconfont icon-gongju', name: '引擎', id: '11' },
                    {
                        nodeId: '52kcszzyxrd',
                        left: '458px',
                        top: '203px',
                        class: 'workflow-right-clone',
                        icon: 'iconfont icon-shouye_dongtaihui',
                        name: '模版',
                        id: '12',
                    },
                    {
                        nodeId: 'nltskl6k4me',
                        left: '164px',
                        top: '350px',
                        class: 'workflow-right-clone',
                        icon: 'iconfont icon-zhongduancanshuchaxun',
                        name: '名称',
                        id: '13',
                    },
                ],
                lineList: [
                    { sourceId: 'huej738hbji', targetId: '52kcszzyxrd', label: '传送' },
                    { sourceId: 'huej738hbji', targetId: 'nltskl6k4me', label: '' },
                ],
            };
        };
        // 左侧导航-初始化拖动
        const initSortable = () => {
            state.leftNavRefs.forEach(v => {
                Sortable.create(v as HTMLDivElement, {
                    group: {
                        name: 'vue-next-admin-1',
                        pull: 'clone',
                        put: false,
                    },
                    animation: 0,
                    sort: false,
                    draggable: '.workflow-left-item',
                    forceFallback: true,
                    onEnd: function (evt: any) {
                        const { name, icon, id } = evt.clone.dataset;
                        const { layerX, layerY, clientX, clientY } = evt.originalEvent;
                        const el = state.workflowRightRef!;
                        const { x, y, width, height } = el.getBoundingClientRect();
                        if (clientX < x || clientX > width + x || clientY < y || y > y + height) {
                            ElMessage.warning('请把节点拖入到画布中');
                        } else {
                            // 节点id(唯一)
                            const nodeId = Math.random().toString(36).substr(2, 12);
                            // 处理节点数据
                            const node = {
                                nodeId,
                                left: `${layerX - 40}px`,
                                top: `${layerY - 15}px`,
                                class: 'workflow-right-clone',
                                name,
                                icon,
                                id,
                            };
                            // 右侧视图内容数组
                            state.jsplumbData.nodeList.push(node);
                            // 元素加载完毕时
                            nextTick(() => {
                                // 整个节点作为source或者target
                                state.jsPlumb.makeSource(nodeId, state.jsplumbMakeSource);
                                // // 整个节点作为source或者target
                                state.jsPlumb.makeTarget(nodeId, state.jsplumbMakeTarget, jsplumbConnect);
                                // 设置节点可以拖拽(此处为id值,非class)
                                state.jsPlumb.draggable(nodeId, {
                                    containment: 'parent',
                                    stop: (el: any) => {
                                        state.jsplumbData.nodeList.forEach((v) => {
                                            if (v.nodeId === el.el.id) {
                                                // 节点x, y重新赋值,防止再次从左侧导航中拖拽节点时,x, y恢复默认
                                                v.left = `${el.pos[0]}px`;
                                                v.top = `${el.pos[1]}px`;
                                            }
                                        });
                                    },
                                });
                            });
                        }
                    },
                });
            });
        };
        // 初始化 jsPlumb
        const initJsPlumb = () => {
            (<any>jsPlumb).ready(() => {
                state.jsPlumb = (<any>jsPlumb).getInstance({
                    detachable: false,
                    Container: 'workflow-right',
                });
                state.jsPlumb.fire('jsPlumbDemoLoaded', state.jsPlumb);
                // 导入默认配置
                state.jsPlumb.importDefaults(state.jsplumbDefaults);
                // 会使整个jsPlumb立即重绘。
                state.jsPlumb.setSuspendDrawing(false, true);
                // 初始化节点、线的链接
                initJsPlumbConnection();
                // 点击线弹出右键菜单
                state.jsPlumb.bind('contextmenu', (conn: any, originalEvent: MouseEvent) => {
                    originalEvent.preventDefault();
                    const { sourceId, targetId } = conn;
                    const { clientX, clientY } = originalEvent;
                    state.dropdownLine.x = clientX;
                    state.dropdownLine.y = clientY;
                    const v: any = state.jsplumbData.nodeList.find((v) => v.nodeId === targetId);
                    const line: any = state.jsplumbData.lineList.find((v) => v.sourceId === sourceId && v.targetId === targetId);
                    v.type = 'line';
                    v.label = line.label;
                    contextmenuLineRef.value.openContextmenu(v, conn);
                });
                // 连线之前
                state.jsPlumb.bind('beforeDrop', (conn: any) => {
                    const { sourceId, targetId } = conn;
                    const item = state.jsplumbData.lineList.find((v) => v.sourceId === sourceId && v.targetId === targetId);
                    if (item) {
                        ElMessage.warning('关系已存在,不可重复连接');
                        return false;
                    } else {
                        return true;
                    }
                });
                // 连线时
                state.jsPlumb.bind('connection', (conn: any) => {
                    const { sourceId, targetId } = conn;
                    state.jsplumbData.lineList.push({
                        sourceId,
                        targetId,
                        label: '',
                    });
                });
                // 删除连线时回调函数
                state.jsPlumb.bind('connectionDetached', (conn: any) => {
                    const { sourceId, targetId } = conn;
                    state.jsplumbData.lineList = state.jsplumbData.lineList.filter((line) => {
                        if (line.sourceId == sourceId && line.targetId == targetId) {
                            return false;
                        }
                        return true;
                    });
                });
            });
        };
        // 初始化节点、线的链接
        const initJsPlumbConnection = () => {
            // 节点
            state.jsplumbData.nodeList.forEach((v) => {
                // 整个节点作为source或者target
                state.jsPlumb.makeSource(v.nodeId, state.jsplumbMakeSource);
                // 整个节点作为source或者target
                state.jsPlumb.makeTarget(v.nodeId, state.jsplumbMakeTarget, jsplumbConnect);
                // 设置节点可以拖拽(此处为id值,非class)
                state.jsPlumb.draggable(v.nodeId, {
                    containment: 'parent',
                    stop: (el: any) => {
                        state.jsplumbData.nodeList.forEach((v) => {
                            if (v.nodeId === el.el.id) {
                                // 节点x, y重新赋值,防止再次从左侧导航中拖拽节点时,x, y恢复默认
                                v.left = `${el.pos[0]}px`;
                                v.top = `${el.pos[1]}px`;
                            }
                        });
                    },
                });
            });
            // 线
            state.jsplumbData.lineList.forEach((v) => {
                state.jsPlumb.connect(
                    {
                        source: v.sourceId,
                        target: v.targetId,
                        label: v.label,
                    },
                    state.jsplumbConnect
                );
            });
        };
        // 左侧导航-菜单标题点击
        const onTitleClick = (val: any) => {
            val.isOpen = !val.isOpen;
        };
        // 右侧内容区-当前项点击
        const onItemCloneClick = (k: number) => {
            state.jsPlumbNodeIndex = k;
        };
        // 右侧内容区-当前项右键菜单点击
        const onContextmenu = (v: any, k: number, e: MouseEvent) => {
            state.jsPlumbNodeIndex = k;
            const { clientX, clientY } = e;
            state.dropdownNode.x = clientX;
            state.dropdownNode.y = clientY;
            v.type = 'node';
            v.label = '';
            let item: any = {};
            state.leftNavList.forEach((l) => {
                if (l.children) if (l.children.find((c: any) => c.id === v.id)) item = l.children.find((c: any) => c.id === v.id);
            });
            v.from = item.form;
            contextmenuNodeRef.value.openContextmenu(v);
        };
        // 右侧内容区-当前项右键菜单点击回调(节点)
        const onCurrentNodeClick = (item: any) => {
            const { contextMenuClickId, nodeId } = item;
            if (contextMenuClickId === 0) {
                const nodeIndex = state.jsplumbData.nodeList.findIndex((item) => item.nodeId === nodeId);
                state.jsplumbData.nodeList.splice(nodeIndex, 1);
                state.jsPlumb.removeAllEndpoints(nodeId);
                state.jsPlumbNodeIndex = null;
            } else if (contextMenuClickId === 1) {
                drawerRef.value.open(item);
            }
        };
        // 右侧内容区-当前项右键菜单点击回调(线)
        const onCurrentLineClick = (item: any, conn: any) => {
            const { contextMenuClickId } = item;
            const { endpoints } = conn;
            const intercourse: any = [];
            endpoints.forEach((v: any) => {
                intercourse.push({
                    id: v.element.id,
                    innerText: v.element.innerText,
                });
            });
            item.contact = `${intercourse[0].innerText}(${intercourse[0].id}) => ${intercourse[1].innerText}(${intercourse[1].id})`;
            if (contextMenuClickId === 0) state.jsPlumb.deleteConnection(conn);
            else if (contextMenuClickId === 1) drawerRef.value.open(item, conn);
        };
        // 设置线的 label
        const setLineLabel = (obj: any) => {
            const { sourceId, targetId, label } = obj;
            const conn = state.jsPlumb.getConnections({
                source: sourceId,
                target: targetId,
            })[0];
            conn.setLabel(label);
            if (!label || label === '') {
                conn.addClass('workflow-right-empty-label');
            } else {
                conn.removeClass('workflow-right-empty-label');
                conn.addClass('workflow-right-label');
            }
            state.jsplumbData.lineList.forEach((v) => {
                if (v.sourceId === sourceId && v.targetId === targetId) v.label = label;
            });
        };
        // 设置节点内容
        const setNodeContent = (obj: any) => {
            const { nodeId, name, icon } = obj;
            // 设置节点 name 与 icon
            state.jsplumbData.nodeList.forEach((v) => {
                if (v.nodeId === nodeId) {
                    v.name = name;
                    v.icon = icon;
                }
            });
            // 重绘
            nextTick(() => {
                state.jsPlumb.setSuspendDrawing(false, true);
            });
        };
        // 顶部工具栏-当前项点击
        const onToolClick = (fnName: String) => {
            switch (fnName) {
                case 'help':
                    onToolHelp();
                    break;
                case 'download':
                    onToolDownload();
                    break;
                case 'submit':
                    onToolSubmit();
                    break;
                case 'copy':
                    onToolCopy();
                    break;
                case 'del':
                    onToolDel();
                    break;
                case 'fullscreen':
                    onToolFullscreen();
                    break;
            }
        };
        // 顶部工具栏-帮助
        const onToolHelp = () => {
            nextTick(() => {
                helpRef.value.open();
            });
        };
        // 顶部工具栏-下载
        const onToolDownload = () => {
            const { globalTitle } = themeConfig.value;
            const href = 'data:text/json;charset=utf-8,' + encodeURIComponent(JSON.stringify(state.jsplumbData, null, '\t'));
            const aLink = document.createElement('a');
            aLink.setAttribute('href', href);
            aLink.setAttribute('download', `${globalTitle}工作流.json`);
            aLink.click();
            aLink.remove();
            ElMessage.success('下载成功');
        };
        // 顶部工具栏-提交
        const onToolSubmit = () => {
            // console.log(state.jsplumbData);
            ElMessage.success('数据提交成功');
        };
        // 顶部工具栏-复制
        const onToolCopy = () => {
            copyText(JSON.stringify(state.jsplumbData));
        };
        // 顶部工具栏-删除
        const onToolDel = () => {
            ElMessageBox.confirm('此操作将清空画布,是否继续?', '提示', {
                confirmButtonText: '清空',
                cancelButtonText: '取消',
            })
                .then(() => {
                    state.jsplumbData.nodeList.forEach((v) => {
                        state.jsPlumb.removeAllEndpoints(v.nodeId);
                    });
                    nextTick(() => {
                        state.jsplumbData = {
                            nodeList: [],
                            lineList: [],
                        };
                        ElMessage.success('清空画布成功');
                    });
                })
                .catch(() => {});
        };
        // 顶部工具栏-全屏
        const onToolFullscreen = () => {
            stores.setCurrenFullscreen(true);
        };
        // 页面加载时
        onMounted(async () => {
            await initLeftNavList();
            initSortable();
            initJsPlumb();
            setClientWidth();
            window.addEventListener('resize', setClientWidth);
        });
        // 页面卸载时
        onUnmounted(() => {
            window.removeEventListener('resize', setClientWidth);
        });
        return {
            setViewHeight,
            setClientWidth,
            setLineLabel,
            setNodeContent,
            onTitleClick,
            onItemCloneClick,
            onContextmenu,
            onCurrentNodeClick,
            onCurrentLineClick,
            contextmenuNodeRef,
            contextmenuLineRef,
            drawerRef,
            helpRef,
            onToolClick,
            ...toRefs(state),
        };
    },
});
</script>
 
<style scoped lang="scss">
.workflow-container {
    position: relative;
    .workflow {
        display: flex;
        height: 100%;
        width: 100%;
        flex-direction: column;
        .workflow-content {
            display: flex;
            height: calc(100% - 35px);
            .workflow-left {
                width: 220px;
                height: 100%;
                border-right: 1px solid var(--el-border-color-light, #ebeef5);
                ::v-deep(.el-collapse-item__content) {
                    padding-bottom: 0;
                }
                .workflow-left-title {
                    height: 50px;
                    display: flex;
                    align-items: center;
                    padding: 0 10px;
                    border-top: 1px solid var(--el-border-color-light, #ebeef5);
                    color: var(--el-text-color-primary);
                    cursor: default;
                    span {
                        flex: 1;
                    }
                }
                .workflow-left-item {
                    display: inline-block;
                    width: calc(50% - 15px);
                    position: relative;
                    cursor: move;
                    margin: 0 0 10px 10px;
                    .workflow-left-item-icon {
                        height: 35px;
                        display: flex;
                        align-items: center;
                        transition: all 0.3s ease;
                        padding: 5px 10px;
                        border: 1px dashed transparent;
                        background: var(--next-bg-color);
                        border-radius: 3px;
                        i,
                        .name {
                            color: var(--el-text-color-secondary);
                            transition: all 0.3s ease;
                            white-space: nowrap;
                            text-overflow: ellipsis;
                            overflow: hidden;
                        }
                        &:hover {
                            transition: all 0.3s ease;
                            border: 1px dashed var(--el-color-primary);
                            background: var(--el-color-primary-light-9);
                            border-radius: 5px;
                            i,
                            .name {
                                transition: all 0.3s ease;
                                color: var(--el-color-primary);
                            }
                        }
                    }
                }
                & .workflow-left-id:first-of-type {
                    .workflow-left-title {
                        border-top: none;
                    }
                }
            }
            .workflow-right {
                flex: 1;
                position: relative;
                overflow: hidden;
                height: 100%;
                background-image: linear-gradient(90deg, rgb(156 214 255 / 15%) 10%, rgba(0, 0, 0, 0) 10%),
                    linear-gradient(rgb(156 214 255 / 15%) 10%, rgba(0, 0, 0, 0) 10%);
                background-size: 10px 10px;
                .workflow-right-clone {
                    position: absolute;
                    .workflow-right-box {
                        height: 35px;
                        align-items: center;
                        color: var(--el-text-color-secondary);
                        padding: 0 10px;
                        border-radius: 3px;
                        cursor: move;
                        transition: all 0.3s ease;
                        min-width: 94.5px;
                        background: var(--el-color-white);
                        border: 1px solid var(--el-border-color-light, #ebeef5);
                        .workflow-left-item-icon {
                            display: flex;
                            align-items: center;
                            height: 35px;
                        }
                        &:hover {
                            border: 1px dashed var(--el-color-primary);
                            background: var(--el-color-primary-light-9);
                            transition: all 0.3s ease;
                            color: var(--el-color-primary);
                            i {
                                cursor: Crosshair;
                            }
                        }
                    }
                    .workflow-right-active {
                        border: 1px dashed var(--el-color-primary);
                        background: var(--el-color-primary-light-9);
                        color: var(--el-color-primary);
                    }
                }
                ::v-deep(.jtk-overlay):not(.aLabel) {
                    padding: 4px 10px;
                    border: 1px solid var(--el-border-color-light, #ebeef5) !important;
                    color: var(--el-text-color-secondary) !important;
                    background: var(--el-color-white) !important;
                    border-radius: 3px;
                    font-size: 10px;
                }
                ::v-deep(.jtk-overlay.workflow-right-empty-label) {
                    display: none;
                }
            }
        }
    }
    .workflow-mask {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        &::after {
            content: '手机版不支持 jsPlumb 操作';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            z-index: 1;
            background: rgba(255, 255, 255, 0.9);
            color: #666666;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
</style>