瀏覽代碼

工单管理的工艺

cz 1 年之前
父節點
當前提交
6108ddec6e

+ 16 - 60
src/views/JXSK/processConfig/vueFlow.vue

@@ -46,7 +46,7 @@ defineProps({
     type: Object,
     default: "",
   },
-  dataId: {
+  nodeObject: {
     type: String,
     default: "",
   },
@@ -65,7 +65,7 @@ const submitFormData = {
 const submitAll = () => {
   const nodeList = graph.toJSON().cells;
   submitFormData.nodeObject = JSON.stringify(nodeList);
-  submitFormData.lineObject = JSON.stringify(flowDefinitionNodeObj.value);
+  // submitFormData.lineObject = JSON.stringify(flowDefinitionNodeObj.value);
   console.log(nodeList, "asda");
   const arr = nodeList
     .filter((x) => x.shape != "edge")
@@ -82,7 +82,6 @@ const submitAll = () => {
 
   return {
     nodeObject: submitFormData.nodeObject,
-    lineObject: submitFormData.lineObject,
   };
 };
 
@@ -532,7 +531,7 @@ const antvInit = async (data) => {
   } else {
     graph.addNode({
       shape: "start-btn",
-      x: 500,
+      x: 200,
       y: 20,
       label: "开始",
       id: 1,
@@ -541,8 +540,8 @@ const antvInit = async (data) => {
 
     graph.addNode({
       shape: "end-btn",
-      x: 500,
-      y: 200,
+      x: 200,
+      y: 300,
       label: "结束",
       id: 99,
       attrs: {},
@@ -550,47 +549,14 @@ const antvInit = async (data) => {
   }
 };
 
-const getFlowInfo = () => {
-  proxy
-    .post("/flowDefinition/getDetails", { id: submitFormData.id })
-    .then((res) => {
-      if (res.lineObject) {
-        flowDefinitionNodeObj.value = JSON.parse(res.lineObject);
-        for (const key in flowDefinitionNodeObj.value) {
-          if (flowDefinitionNodeObj.value[key].nodeButtonSet) {
-            flowDefinitionNodeObj.value[key].nodeButtonSet =
-              flowDefinitionNodeObj.value[key].nodeButtonSet.map((item) => {
-                return item * 1;
-              });
-          }
-        }
-      }
-
-      if (res.nodeObject) {
-        antvInit(JSON.parse(res.nodeObject));
-      } else {
-        antvInit();
-      }
-
-      for (const key in flowDefinitionNodeObj.value) {
-        //延迟等待dom渲染完成
-        setTimeout(() => {
-          if (
-            flowDefinitionNodeObj.value[key].nodeName != "结束" &&
-            flowDefinitionNodeObj.value[key].cell != "开始"
-          ) {
-            let htmlNode = document.querySelector(
-              "g[data-cell-id='" + key + "']"
-            );
-            //获取htmlNode节点下的title,修改title的内容
-            htmlNode.getElementsByClassName("title")[0].innerHTML =
-              flowDefinitionNodeObj.value[key].nodeName;
-          }
-        }, 2000);
-      }
-    });
+const getFlowInfo = (data) => {
+  if (data) {
+    antvInit(data);
+  } else {
+    antvInit();
+  }
 };
-const router = useRouter();
+
 onActivated(() => {});
 onDeactivated(() => {
   console.log(window.document.getElementById("minimap").children);
@@ -599,22 +565,12 @@ onDeactivated(() => {
   }
 });
 onMounted(() => {
-  //获取url router参数
-  if (proxy.dataId) {
-    submitFormData.id = proxy.dataId;
+  if (proxy.nodeObject) {
+    let data = JSON.parse(proxy.nodeObject);
+    getFlowInfo(data);
+  } else {
     getFlowInfo();
   }
-  // submitFormData.flowInfoId = router.currentRoute.value.query.flowInfoId;
-  // submitFormData.id = router.currentRoute.value.query.id;
-  // submitFormData.tenantId = router.currentRoute.value.query.tenantId;
-  // if (submitFormData.flowInfoId) {
-  //   getFlowInfo();
-  // }
-  // setTimeout(() => {
-  //   if (window.document.getElementById("minimap").children.length > 1) {
-  //     window.document.getElementById("minimap").children[0].remove();
-  //   }
-  // }, 500);
 });
 defineExpose({
   submitAll,

+ 22 - 0
src/views/JXSK/production/processConfig/Sidebar.vue

@@ -0,0 +1,22 @@
+<script setup>
+function onDragStart(event, nodeType) {
+  if (event.dataTransfer) {
+    event.dataTransfer.setData('application/vueflow', nodeType)
+    event.dataTransfer.effectAllowed = 'move'
+  }
+}
+</script>
+
+<template>
+  <aside>
+    <div class="description">You can drag these nodes to the pane.</div>
+
+    <div class="nodes">
+      <div class="vue-flow__node-input" :draggable="true" @dragstart="onDragStart($event, 'input')">Input Node</div>
+
+      <div class="vue-flow__node-default" :draggable="true" @dragstart="onDragStart($event, 'default')">Default Node</div>
+
+      <div class="vue-flow__node-output" :draggable="true" @dragstart="onDragStart($event, 'output')">Output Node</div>
+    </div>
+  </aside>
+</template>

+ 69 - 0
src/views/JXSK/production/processConfig/branchBtn.vue

@@ -0,0 +1,69 @@
+<template>
+    <div class="branch-btn">
+        <div class="icon-box">
+            <div class="icon">
+                <i class="iconfont icon-iconm_fenz"></i>
+            </div>
+            <div class="icon-text">分支</div>
+        </div>
+        <div class="title">{{title || '待配置'}}</div>
+    </div>
+</template>
+<script setup>
+    import { defineProps, inject, ref } from 'vue'
+    
+    let title = ref('')
+    let getNode = inject('getNode')
+    const node = getNode()
+    node.on('change:data', ({current}) => {
+        title.value = current.title
+    })
+    
+
+</script>
+<style lang="scss">
+    .branch-btn{
+        height: 90px;
+        width: 150px;
+        background: #fff;
+        text-align: center;
+        box-shadow: 0px 2px 10px 1px rgba(51,51,51,0.1);
+        border-radius: 10px 10px 10px 10px;
+        padding: 10px;
+        .title {
+            width: 100%;
+            height: 40px;
+            line-height: 40px;
+            padding: 0 20px;
+            text-align: left;
+            background: #eee;
+            border-radius: 10px;
+            margin-top: 10px;
+            //文字一行多余省略
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+        }
+        .icon-box{
+            display: flex;
+            height: 20px;
+            line-height: 20px;
+            color: #333;
+            font-size: 14px;
+            .icon{
+                height: 20px;
+                width: 20px;
+                border-radius: 10px;
+                background: #7566F0;
+                color: #fff;
+                i{
+                    color: #fff;
+                    font-size: 12px;
+                }
+            }
+            .icon-text{
+                margin-left:10px;
+            }
+        }
+    }
+</style>

+ 15649 - 0
src/views/JXSK/production/processConfig/data.js

@@ -0,0 +1,15649 @@
+const data = {
+    "flowInfoId": "1651215990773538818",
+    "titleTemplate": "${nickName}发起的采购申请",
+    "tenantId": "wdly",
+    "nodeObject": "",
+    "lineObject": "",
+    "flowDefinitionNodeList": [
+        {
+            "nodeName": "开始",
+            "nodeType": 1,
+            "id": 1,
+            "nodeButtonSet": "",
+            "parentId": 0
+        },
+        {
+            "id": 87654876563198930,
+            "cell": {
+                "position": {
+                    "x": 1560,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "8fcef972-e029-4256-8a34-17a9d797fe24",
+                "label": "办理",
+                "zIndex": 2,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030609",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030609'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 31535808286936960,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "d172058b-ce5b-4d64-ac0f-526098895dc9",
+                "label": "办理",
+                "zIndex": 3,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030609",
+            "jobNumber11": 0,
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030609'",
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 71454239180122504,
+            "cell": {
+                "position": {
+                    "x": 1181,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b69102fd-e644-44b4-946f-a4240977b4c6",
+                "label": "办理",
+                "zIndex": 4,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030608",
+            "jobNumber11": 0,
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030608'",
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 34888789012582920,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "bea1ef71-62b0-46f6-981f-a174c611d80a",
+                "label": "办理",
+                "zIndex": 5,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030608",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030608'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 46783227869192620,
+            "cell": {
+                "position": {
+                    "x": 793,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b6760418-e58d-45c1-9787-918dbeafb876",
+                "label": "办理",
+                "zIndex": 6,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030607",
+            "nodeName": "第一运营",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030607'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 92974993614084130,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": -20
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "031d4e74-1b30-4a2c-8ebb-07e11a71b87a",
+                "label": "办理",
+                "zIndex": 7,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030607",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030607'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 43652247938814170,
+            "cell": {
+                "position": {
+                    "x": 417,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "55c869df-029e-4257-9360-e85a449ea83e",
+                "label": "办理",
+                "zIndex": 8,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030616",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030616'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 84495429413314660,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "a39071e5-73e1-4a1f-9433-2f9ef579248f",
+                "label": "办理",
+                "zIndex": 9,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030616",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030616'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 80515831426511660,
+            "cell": {
+                "position": {
+                    "x": 45,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "5cdcb8f1-89a2-48a9-89eb-69423da836fb",
+                "label": "办理",
+                "zIndex": 10,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030615",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030615'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 35967484594513464,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "d1eabfc8-9e73-44db-b4b0-9246460654ee",
+                "label": "办理",
+                "zIndex": 11,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030615",
+            "jobNumber11": 0,
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030615'",
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 30570636517939520,
+            "cell": {
+                "position": {
+                    "x": -321,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "d09af4d6-7238-4bba-992b-886a77068c39",
+                "label": "办理",
+                "zIndex": 12,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030637",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030637'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 14579179464628900,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "23bcd712-f735-409a-8443-99e37e82e723",
+                "label": "办理",
+                "zIndex": 13,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030637",
+            "handlingMethod": "",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030637'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 13642767536749112,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": -20
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f0ad07be-56e7-40b7-9ab2-1d7125f4b971",
+                "label": "办理",
+                "zIndex": 14,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030610",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030610'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 29167286170810548,
+            "cell": {
+                "position": {
+                    "x": 1927,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ec6a04f5-5492-41e4-b80b-5af261f566d8",
+                "label": "办理",
+                "zIndex": 15,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030610",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030610'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 95316357736974300,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ca270c8d-dc88-403f-a2f1-c49c6b9e13b9",
+                "label": "办理",
+                "zIndex": 16,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030636",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030636'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 59399439707668830,
+            "cell": {
+                "position": {
+                    "x": 2289,
+                    "y": -17
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "532b8ea5-472a-43b9-ad70-7b731ca35b92",
+                "label": "办理",
+                "zIndex": 17,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030636",
+            "jobNumber11": 0,
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030636'",
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 7207304163936801,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": -20
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "3942acd9-6423-48a9-89c5-51d1c07d093e",
+                "label": "办理",
+                "zIndex": 18,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030638",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030638'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 25143000960558524,
+            "cell": {
+                "position": {
+                    "x": 2645,
+                    "y": -20
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c0c761a9-cb89-446d-adb3-e366eb042ab3",
+                "label": "办理",
+                "zIndex": 19,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030638",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030638'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 23845391680821624,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": -20
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "03c9a7a9-495e-4584-a7d0-e9c8b4979f39",
+                "label": "办理",
+                "zIndex": 20,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030617",
+            "jumpCondition": "startData.isAgreement = '1' && startData.purchaseDetailList[0].deptId = '1650750129810030617'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 7852845326972058,
+            "cell": {
+                "position": {
+                    "x": 2993,
+                    "y": -20
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "4d468250-f79e-4b58-9713-e58ed885d909",
+                "label": "办理",
+                "zIndex": 21,
+                "data": {
+                    "title": "第一运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第一运营",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030617",
+            "jumpCondition": "startData.isAgreement = '0' && startData.purchaseDetailList[0].deptId = '1650750129810030617'",
+            "jobNumber11": 0,
+            "parentId": 1,
+            "nodeType": 2
+        },
+        {
+            "id": 54607947303686720,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "8fd1409e-863d-4722-98d7-bb1eccc0ff28",
+                "label": "办理",
+                "zIndex": 22,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030637",
+            "jobNumber11": 0,
+            "parentId": 14579179464628900,
+            "nodeType": 2
+        },
+        {
+            "id": 73747338499183070,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "385dfedd-e217-49a6-aff9-86ecabf942f3",
+                "label": "办理",
+                "zIndex": 23,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "nodeName": "采购主管",
+            "jobNumber11": 0,
+            "parentId": 54607947303686720,
+            "nodeType": 2
+        },
+        {
+            "id": 93816802239427330,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b7ec8693-e425-4a4f-8f8c-ab5fd7146977",
+                "label": "办理",
+                "zIndex": 24,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "nodeName": "运营主管",
+            "jobNumber11": 0,
+            "parentId": 73747338499183070,
+            "nodeType": 2
+        },
+        {
+            "id": 91054280380509150,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "86d85f70-a093-4773-9e4d-cc17410e8d33",
+                "label": "办理",
+                "zIndex": 25,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 93816802239427330,
+            "nodeType": 2
+        },
+        {
+            "id": 36689141619358810,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "4eb2dbdd-0bf3-43e7-95a0-6c1aff112a1f",
+                "label": "办理",
+                "zIndex": 26,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 91054280380509150,
+            "nodeType": 2
+        },
+        {
+            "id": 1608773363799387,
+            "cell": {
+                "position": {
+                    "x": -505,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b8acacb3-fc84-4bfa-9ef8-8cdf42eee39b",
+                "label": "办理",
+                "zIndex": 27,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 36689141619358810,
+            "nodeType": 2
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 95531340571605680,
+            "nodeButtonSet": "",
+            "parentId": 1608773363799387
+        },
+        {
+            "id": 96049058691271410,
+            "cell": {
+                "position": {
+                    "x": -321,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "72d97085-52b9-4e61-8f9f-2415380d603e",
+                "label": "办理",
+                "zIndex": 29,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030637",
+            "jobNumber11": 0,
+            "parentId": 30570636517939520,
+            "nodeType": 2
+        },
+        {
+            "id": 97665834213621970,
+            "cell": {
+                "position": {
+                    "x": -321,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "d0b3a0a1-1933-44c8-bc21-bb2342472cd8",
+                "label": "办理",
+                "zIndex": 30,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 96049058691271410,
+            "nodeType": 2
+        },
+        {
+            "id": 27020445968247932,
+            "cell": {
+                "position": {
+                    "x": -321,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "98339a13-28c1-4325-acc1-4b95dae938a8",
+                "label": "办理",
+                "zIndex": 31,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "nodeName": "运营主管",
+            "jobNumber11": 0,
+            "parentId": 97665834213621970,
+            "nodeType": 2
+        },
+        {
+            "id": 50056925372206670,
+            "cell": {
+                "position": {
+                    "x": -321,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "82f70efb-1485-40e3-90e2-4b10a648e14c",
+                "label": "办理",
+                "zIndex": 32,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "nodeName": "财务审批",
+            "jobNumber11": 0,
+            "parentId": 27020445968247932,
+            "nodeType": 2
+        },
+        {
+            "id": 97125485431225070,
+            "cell": {
+                "position": {
+                    "x": -321,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "cc509ab5-0e23-4694-97fb-460c4c4aab76",
+                "label": "办理",
+                "zIndex": 33,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 50056925372206670,
+            "nodeType": 2
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 92352790614865870,
+            "nodeButtonSet": "",
+            "parentId": 97125485431225070
+        },
+        {
+            "id": 65572234386691550,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "5a549d4b-b3c1-4eca-9112-f00d9af983ea",
+                "label": "办理",
+                "zIndex": 35,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030615",
+            "jobNumber11": 0,
+            "parentId": 35967484594513464,
+            "nodeType": 2
+        },
+        {
+            "id": 43521954345409550,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "2792a8c1-2103-41c3-ac00-62d348950faa",
+                "label": "办理",
+                "zIndex": 36,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 65572234386691550,
+            "nodeType": 2
+        },
+        {
+            "id": 52130142495208490,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "8ae714a1-92cc-4d82-9e02-c93d9668d31c",
+                "label": "办理",
+                "zIndex": 37,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 43521954345409550,
+            "nodeType": 2
+        },
+        {
+            "id": 74284104453578910,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "2e8253d5-09bc-452c-95a2-a6eecbb3d821",
+                "label": "办理",
+                "zIndex": 38,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 52130142495208490,
+            "nodeType": 2
+        },
+        {
+            "id": 59525413961882340,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b9fbc88e-b173-46dc-98c6-fb716c06fb57",
+                "label": "办理",
+                "zIndex": 39,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 74284104453578910,
+            "nodeType": 2
+        },
+        {
+            "id": 19130385978700380,
+            "cell": {
+                "position": {
+                    "x": -143,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "26540eb9-9234-4342-8a88-4942d6273805",
+                "label": "办理",
+                "zIndex": 40,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 59525413961882340,
+            "nodeType": 2
+        },
+        {
+            "id": 84926848949207410,
+            "cell": {
+                "position": {
+                    "x": 45,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "2da51207-f276-4096-8669-28609056663e",
+                "label": "办理",
+                "zIndex": 41,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030615",
+            "jobNumber11": 0,
+            "parentId": 80515831426511660,
+            "nodeType": 2
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 91074872050059380,
+            "nodeButtonSet": "",
+            "parentId": 19130385978700380
+        },
+        {
+            "id": 11716308337237980,
+            "cell": {
+                "position": {
+                    "x": 45,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "144891cd-a875-4013-9975-b9df56fbdbae",
+                "label": "办理",
+                "zIndex": 43,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 84926848949207410,
+            "nodeType": 2
+        },
+        {
+            "id": 88160754247246660,
+            "cell": {
+                "position": {
+                    "x": 45,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "327c63d1-aa94-4aac-bbd5-2b310ebc4236",
+                "label": "办理",
+                "zIndex": 44,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 11716308337237980,
+            "nodeType": 2
+        },
+        {
+            "id": 86177302935215150,
+            "cell": {
+                "position": {
+                    "x": 45,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "541d12a7-dec7-4694-b3dc-c517712622bd",
+                "label": "办理",
+                "zIndex": 45,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 88160754247246660,
+            "nodeType": 2
+        },
+        {
+            "id": 56228359922158450,
+            "cell": {
+                "position": {
+                    "x": 45,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "27dab665-6f71-4672-ab7d-5f52ab8d9849",
+                "label": "办理",
+                "zIndex": 46,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 86177302935215150,
+            "nodeType": 2
+        },
+        {
+            "id": 92382916804628060,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "4131b838-b180-4e10-8630-d2c3b1628325",
+                "label": "办理",
+                "zIndex": 47,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030616",
+            "nodeName": "第二运营",
+            "jobNumber11": 0,
+            "parentId": 84495429413314660,
+            "nodeType": 2
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 74927876732779540,
+            "nodeButtonSet": "",
+            "parentId": 56228359922158450
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 26601550175728252,
+            "nodeButtonSet": "",
+            "parentId": 37755381599072430
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 71276647727248840,
+            "nodeButtonSet": "",
+            "parentId": 83830201639305470
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 20084408835032084,
+            "nodeButtonSet": "",
+            "parentId": 78471412373441780
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 50855284637052000,
+            "nodeButtonSet": "",
+            "parentId": 4873577070672330
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 45599698785558936,
+            "nodeButtonSet": "",
+            "parentId": 53519331746716770
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 8081065539981025,
+            "nodeButtonSet": "",
+            "parentId": 67728664763952320
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 43158839255629890,
+            "nodeButtonSet": "",
+            "parentId": 70434873891355700
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 66726463334105256,
+            "nodeButtonSet": "",
+            "parentId": 69489260734846584
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 78721497333623100,
+            "nodeButtonSet": "",
+            "parentId": 40134550577972130
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 97690979632701180,
+            "nodeButtonSet": "",
+            "parentId": 36028942492695730
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 84267931505139000,
+            "nodeButtonSet": "",
+            "parentId": 56193912231767190
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 80624325109093180,
+            "nodeButtonSet": "",
+            "parentId": 34740198837560830
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 47250174661024540,
+            "nodeButtonSet": "",
+            "parentId": 69981903733752550
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 39201267786868056,
+            "nodeButtonSet": "",
+            "parentId": 63673728168392920
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 26951462200177324,
+            "nodeButtonSet": "",
+            "parentId": 36555525400521160
+        },
+        {
+            "nodeName": "结束",
+            "nodeType": 99,
+            "id": 3028203485054992,
+            "nodeButtonSet": "",
+            "parentId": 94497927080296900
+        },
+        {
+            "id": 78246250674001920,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "95b54bd2-d481-40fc-bbc9-a193e1719afe",
+                "label": "办理",
+                "zIndex": 65,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 92382916804628060,
+            "nodeType": 2
+        },
+        {
+            "id": 36792712266693430,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b11952d9-dd57-433f-bf48-d92f64dfbcc9",
+                "label": "办理",
+                "zIndex": 66,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 78246250674001920,
+            "nodeType": 2
+        },
+        {
+            "id": 20106716688024172,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "fb385573-c8aa-4799-9e1b-ef36bd969bce",
+                "label": "办理",
+                "zIndex": 67,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 36792712266693430,
+            "nodeType": 2
+        },
+        {
+            "id": 54866980073884200,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "4b2302ef-4325-48c8-b26c-fd59636efe5a",
+                "label": "办理",
+                "zIndex": 68,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 20106716688024172,
+            "nodeType": 2
+        },
+        {
+            "id": 37755381599072430,
+            "cell": {
+                "position": {
+                    "x": 235,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "15b7ebf8-691e-4dc2-9d90-3e82956d0bc0",
+                "label": "办理",
+                "zIndex": 69,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 54866980073884200,
+            "nodeType": 2
+        },
+        {
+            "id": 83830201639305470,
+            "cell": {
+                "position": {
+                    "x": 417,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ab318a30-4f34-44a6-947e-445b4e176097",
+                "label": "办理",
+                "zIndex": 70,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 41367815011867390,
+            "nodeType": 2
+        },
+        {
+            "id": 41367815011867390,
+            "cell": {
+                "position": {
+                    "x": 417,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "d6b8c84b-eea2-49c7-a0f0-dc87b33d3d17",
+                "label": "办理",
+                "zIndex": 71,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 99309982157302930,
+            "nodeType": 2
+        },
+        {
+            "id": 99309982157302930,
+            "cell": {
+                "position": {
+                    "x": 417,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "9d218251-aa4c-4443-92e5-446253c52d3c",
+                "label": "办理",
+                "zIndex": 72,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 37928974198518700,
+            "nodeType": 2
+        },
+        {
+            "id": 37928974198518700,
+            "cell": {
+                "position": {
+                    "x": 417,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f93c302a-da83-4c21-9ee5-9bb94110cfba",
+                "label": "办理",
+                "zIndex": 73,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 27797434853704228,
+            "nodeType": 2
+        },
+        {
+            "id": 27797434853704228,
+            "cell": {
+                "position": {
+                    "x": 417,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "40b93dbd-ccbb-4d57-9e76-71c0b067ea19",
+                "label": "办理",
+                "zIndex": 74,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030616",
+            "jobNumber11": 0,
+            "parentId": 43652247938814170,
+            "nodeType": 2
+        },
+        {
+            "id": 9870949362339698,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "79d98d1c-2068-4d13-9bb7-04e6f1fbe6d6",
+                "label": "办理",
+                "zIndex": 75,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030607",
+            "nodeName": "第二运营",
+            "jobNumber11": 0,
+            "parentId": 92974993614084130,
+            "nodeType": 2
+        },
+        {
+            "id": 93852933411664900,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "dfb89805-57ee-43ca-bda7-98c86d20be36",
+                "label": "办理",
+                "zIndex": 76,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 9870949362339698,
+            "nodeType": 2
+        },
+        {
+            "id": 51087038768742780,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "717ee8c0-a9c0-4134-9dbd-ddc0e05d07d5",
+                "label": "办理",
+                "zIndex": 77,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 93852933411664900,
+            "nodeType": 2
+        },
+        {
+            "id": 75116654614857860,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "a7bfb2c9-0357-4ebc-818d-33a8c207bd93",
+                "label": "办理",
+                "zIndex": 78,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 51087038768742780,
+            "nodeType": 2
+        },
+        {
+            "id": 46522441022675780,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "55d9b9ec-9541-4a3d-a74d-3282000bc5f4",
+                "label": "办理",
+                "zIndex": 79,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 75116654614857860,
+            "nodeType": 2
+        },
+        {
+            "id": 78471412373441780,
+            "cell": {
+                "position": {
+                    "x": 610,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "5c826bfe-b5f8-4226-a2b6-870debee0802",
+                "label": "办理",
+                "zIndex": 80,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 46522441022675780,
+            "nodeType": 2
+        },
+        {
+            "id": 49521574823790470,
+            "cell": {
+                "position": {
+                    "x": 793,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "4022901d-40cb-4ebd-91b1-a1e2192ad741",
+                "label": "办理",
+                "zIndex": 81,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030607",
+            "jobNumber11": 0,
+            "parentId": 46783227869192620,
+            "nodeType": 2
+        },
+        {
+            "id": 3732526317006823,
+            "cell": {
+                "position": {
+                    "x": 793,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "eb6c28b9-0781-4336-82dc-15881c020aec",
+                "label": "办理",
+                "zIndex": 82,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 49521574823790470,
+            "nodeType": 2
+        },
+        {
+            "id": 65187332856524136,
+            "cell": {
+                "position": {
+                    "x": 793,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b37bc4fa-7187-430e-bfd7-df6ecb27cf09",
+                "label": "办理",
+                "zIndex": 83,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 3732526317006823,
+            "nodeType": 2
+        },
+        {
+            "id": 96918241281500580,
+            "cell": {
+                "position": {
+                    "x": 793,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "9f9ec6f9-5474-464c-97dd-0b1a5d3233f6",
+                "label": "办理",
+                "zIndex": 84,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 65187332856524136,
+            "nodeType": 2
+        },
+        {
+            "id": 4873577070672330,
+            "cell": {
+                "position": {
+                    "x": 793,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "6eb7e8d9-e76c-4c9a-8def-a3104bf05433",
+                "label": "办理",
+                "zIndex": 85,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 96918241281500580,
+            "nodeType": 2
+        },
+        {
+            "id": 19938688630343336,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "1161e238-8a3f-468c-8bdb-fa88b0c95f02",
+                "label": "办理",
+                "zIndex": 86,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030608",
+            "nodeName": "第二运营",
+            "jobNumber11": 0,
+            "parentId": 34888789012582920,
+            "nodeType": 2
+        },
+        {
+            "id": 21501076040617330,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c7adba82-9fdd-4437-b6ec-c5b2de232955",
+                "label": "办理",
+                "zIndex": 87,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 19938688630343336,
+            "nodeType": 2
+        },
+        {
+            "id": 12297357408309816,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "2382d036-b569-4f32-8cd3-037a030fb106",
+                "label": "办理",
+                "zIndex": 88,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 21501076040617330,
+            "nodeType": 2
+        },
+        {
+            "id": 27240841733391476,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "cb180942-f09b-4b69-bbc2-01b452f49d8d",
+                "label": "办理",
+                "zIndex": 89,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 12297357408309816,
+            "nodeType": 2
+        },
+        {
+            "id": 59664890285496664,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f4dae428-fd3c-4c98-bc4c-987078cd6ab9",
+                "label": "办理",
+                "zIndex": 90,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 27240841733391476,
+            "nodeType": 2
+        },
+        {
+            "id": 53519331746716770,
+            "cell": {
+                "position": {
+                    "x": 981,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "703fcf20-c8b1-40dc-8fd2-ce936c67e0af",
+                "label": "办理",
+                "zIndex": 91,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 59664890285496664,
+            "nodeType": 2
+        },
+        {
+            "id": 22110615931787116,
+            "cell": {
+                "position": {
+                    "x": 1181,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b8923347-b6fa-44f3-ba0d-da14728ddb1c",
+                "label": "办理",
+                "zIndex": 92,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030608",
+            "jobNumber11": 0,
+            "parentId": 71454239180122504,
+            "nodeType": 2
+        },
+        {
+            "id": 25691245584085864,
+            "cell": {
+                "position": {
+                    "x": 1181,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "575ac374-b505-436c-a953-04634a03cb2b",
+                "label": "办理",
+                "zIndex": 93,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 22110615931787116,
+            "nodeType": 2
+        },
+        {
+            "id": 16511777932917982,
+            "cell": {
+                "position": {
+                    "x": 1181,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "8fc24cd9-826a-494b-8ade-b70c8372d7f7",
+                "label": "办理",
+                "zIndex": 94,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 25691245584085864,
+            "nodeType": 2
+        },
+        {
+            "id": 60874079928624730,
+            "cell": {
+                "position": {
+                    "x": 1181,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "8a24c494-109c-4af5-b8c8-6842b877163e",
+                "label": "办理",
+                "zIndex": 95,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 16511777932917982,
+            "nodeType": 2
+        },
+        {
+            "id": 67728664763952320,
+            "cell": {
+                "position": {
+                    "x": 1181,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "611d23a2-4592-4705-b8eb-d8257d995ff3",
+                "label": "办理",
+                "zIndex": 96,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 60874079928624730,
+            "nodeType": 2
+        },
+        {
+            "id": 3243967605323550,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "49ea3c68-2738-4ee8-8a44-ab7b90131a40",
+                "label": "办理",
+                "zIndex": 97,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030609",
+            "jobNumber11": 0,
+            "parentId": 31535808286936960,
+            "nodeType": 2
+        },
+        {
+            "id": 11437041259466874,
+            "cell": {
+                "position": {
+                    "x": 1560,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "fa70fd0c-717f-4844-a799-1a2306fa0083",
+                "label": "办理",
+                "zIndex": 98,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030609",
+            "jobNumber11": 0,
+            "nodeName": "第二运营",
+            "parentId": 87654876563198930,
+            "nodeType": 2
+        },
+        {
+            "id": 73524971734843600,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "2d20f878-d7d0-4276-b8a5-d09695a0c5ca",
+                "label": "办理",
+                "zIndex": 99,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030610",
+            "nodeName": "第二运营",
+            "jobNumber11": 0,
+            "parentId": 13642767536749112,
+            "nodeType": 2
+        },
+        {
+            "id": 96886829728034060,
+            "cell": {
+                "position": {
+                    "x": 1927,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "de69a9eb-09b6-4aa3-bd3f-0f8074ab5e4d",
+                "label": "办理",
+                "zIndex": 100,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030610",
+            "jobNumber11": 0,
+            "parentId": 29167286170810548,
+            "nodeType": 2
+        },
+        {
+            "id": 49989440840663016,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "0a0ec19f-c40a-4915-af7e-6696f39b7e7d",
+                "label": "办理",
+                "zIndex": 101,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030636",
+            "nodeName": "第二运营",
+            "jobNumber11": 0,
+            "parentId": 95316357736974300,
+            "nodeType": 2
+        },
+        {
+            "id": 2712601472589515,
+            "cell": {
+                "position": {
+                    "x": 2289,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "7c2244f1-46c9-481a-a2c2-a3e54719b47d",
+                "label": "办理",
+                "zIndex": 102,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030636",
+            "jobNumber11": 0,
+            "parentId": 59399439707668830,
+            "nodeType": 2
+        },
+        {
+            "id": 42661164439022344,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "0669bef9-3ad2-4e8a-b20f-470de7f12da9",
+                "label": "办理",
+                "zIndex": 103,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030638",
+            "nodeName": "第二运营",
+            "jobNumber11": 0,
+            "parentId": 7207304163936801,
+            "nodeType": 2
+        },
+        {
+            "id": 90280433875480300,
+            "cell": {
+                "position": {
+                    "x": 2645,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "732403da-f123-4c8f-8c95-2d0450cb4db4",
+                "label": "办理",
+                "zIndex": 104,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030638",
+            "jobNumber11": 0,
+            "parentId": 25143000960558524,
+            "nodeType": 2
+        },
+        {
+            "id": 96648985020124910,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f34521e2-a6e3-4da9-bfbb-e970366e7433",
+                "label": "办理",
+                "zIndex": 105,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030617",
+            "jobNumber11": 0,
+            "parentId": 23845391680821624,
+            "nodeType": 2
+        },
+        {
+            "id": 54631037809162320,
+            "cell": {
+                "position": {
+                    "x": 2993,
+                    "y": 131
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "5a01deaa-3ea3-497d-b6a4-2fa34294faba",
+                "label": "办理",
+                "zIndex": 106,
+                "data": {
+                    "title": "第二运营"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "第二运营",
+            "handleObjectType": 3,
+            "handleObjectId": "1650750129810030617",
+            "jobNumber11": 0,
+            "parentId": 7852845326972058,
+            "nodeType": 2
+        },
+        {
+            "id": 46652281837154150,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "10b7304b-8d97-4a8c-9878-2d9d8d117642",
+                "label": "办理",
+                "zIndex": 107,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 3243967605323550,
+            "nodeType": 2
+        },
+        {
+            "id": 52373891819896960,
+            "cell": {
+                "position": {
+                    "x": 1560,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "d18cdfb6-0c84-464b-8a6a-724a9b43c685",
+                "label": "办理",
+                "zIndex": 108,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 11437041259466874,
+            "nodeType": 2
+        },
+        {
+            "id": 42295391728662856,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "1fc29d2c-4a2a-43d6-a37a-c91a83c6d4d3",
+                "label": "办理",
+                "zIndex": 109,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 73524971734843600,
+            "nodeType": 2
+        },
+        {
+            "id": 47452385126852790,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "086d67ef-3b94-4873-99b6-cac9d4bbef09",
+                "label": "办理",
+                "zIndex": 110,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 46652281837154150,
+            "nodeType": 2
+        },
+        {
+            "id": 77198145566996750,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ddb40d3c-cb91-470b-ba7d-a0321dd366fe",
+                "label": "办理",
+                "zIndex": 111,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 47452385126852790,
+            "nodeType": 2
+        },
+        {
+            "id": 94842723667994910,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ae8fa568-0fba-470a-9a7d-2b2faf1699ac",
+                "label": "办理",
+                "zIndex": 112,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 77198145566996750,
+            "nodeType": 2
+        },
+        {
+            "id": 70434873891355700,
+            "cell": {
+                "position": {
+                    "x": 1370,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "a627f9f3-dbcf-47e6-80fa-ea85c5175220",
+                "label": "办理",
+                "zIndex": 113,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 94842723667994910,
+            "nodeType": 2
+        },
+        {
+            "id": 14903641552502168,
+            "cell": {
+                "position": {
+                    "x": 1560,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c8d6080a-d25e-40b3-b39c-7c487757687f",
+                "label": "办理",
+                "zIndex": 114,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 52373891819896960,
+            "nodeType": 2
+        },
+        {
+            "id": 53269116427231090,
+            "cell": {
+                "position": {
+                    "x": 1560,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "3882641b-866f-416d-995b-adc4ccc1fed8",
+                "label": "办理",
+                "zIndex": 115,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 14903641552502168,
+            "nodeType": 2
+        },
+        {
+            "id": 69489260734846584,
+            "cell": {
+                "position": {
+                    "x": 1560,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f0ae358e-53e4-4e13-ad60-376dc6e335ee",
+                "label": "办理",
+                "zIndex": 116,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 53269116427231090,
+            "nodeType": 2
+        },
+        {
+            "id": 60572590930996670,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "8836e6ac-7a05-4bdc-a9d3-3865639580fa",
+                "label": "办理",
+                "zIndex": 117,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 42295391728662856,
+            "nodeType": 2
+        },
+        {
+            "id": 57612472781744590,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "128ab65d-8799-4605-90f6-41fa410745db",
+                "label": "办理",
+                "zIndex": 118,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 60572590930996670,
+            "nodeType": 2
+        },
+        {
+            "id": 95653557623828430,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "0a7c7658-83bc-4aa0-ba29-3e811ac34828",
+                "label": "办理",
+                "zIndex": 119,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 57612472781744590,
+            "nodeType": 2
+        },
+        {
+            "id": 40134550577972130,
+            "cell": {
+                "position": {
+                    "x": 1745,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "6f44b7a1-146a-41e7-a4c0-5f39806f9a0d",
+                "label": "办理",
+                "zIndex": 120,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 95653557623828430,
+            "nodeType": 2
+        },
+        {
+            "id": 3231530631917523,
+            "cell": {
+                "position": {
+                    "x": 1927,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f73a09ff-57fb-46be-8980-566cf97aae67",
+                "label": "办理",
+                "zIndex": 121,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 96886829728034060,
+            "nodeType": 2
+        },
+        {
+            "id": 83458997739510620,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "fb03015b-9303-4dad-8442-3ad3a56b3fbb",
+                "label": "办理",
+                "zIndex": 122,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 49989440840663016,
+            "nodeType": 2
+        },
+        {
+            "id": 74982445039211520,
+            "cell": {
+                "position": {
+                    "x": 2289,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "be2052fd-f69d-4123-bd5d-a633e01f8e99",
+                "label": "办理",
+                "zIndex": 123,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 2712601472589515,
+            "nodeType": 2
+        },
+        {
+            "id": 62418353073285336,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "20fe77a8-890a-4413-9489-d6df4b649ed9",
+                "label": "办理",
+                "zIndex": 124,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 42661164439022344,
+            "nodeType": 2
+        },
+        {
+            "id": 94788263113602990,
+            "cell": {
+                "position": {
+                    "x": 2645,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "01714854-7e79-4b8c-bca3-773b9da8a3b3",
+                "label": "办理",
+                "zIndex": 125,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 90280433875480300,
+            "nodeType": 2
+        },
+        {
+            "id": 90144175833626020,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "2a4036e2-35c7-4f8d-a1f2-c49a53797cd5",
+                "label": "办理",
+                "zIndex": 126,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 96648985020124910,
+            "nodeType": 2
+        },
+        {
+            "id": 47904675398291640,
+            "cell": {
+                "position": {
+                    "x": 2993,
+                    "y": 281
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "9d17bac1-8231-4521-9b25-0df14ea620e2",
+                "label": "办理",
+                "zIndex": 127,
+                "data": {
+                    "title": "采购主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "采购主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030595",
+            "jobNumber11": 0,
+            "parentId": 54631037809162320,
+            "nodeType": 2
+        },
+        {
+            "id": 69290997694213070,
+            "cell": {
+                "position": {
+                    "x": 1927,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "95726b0b-effc-4ec7-881a-765dd1489833",
+                "label": "办理",
+                "zIndex": 128,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 3231530631917523,
+            "nodeType": 2
+        },
+        {
+            "id": 24562859029109508,
+            "cell": {
+                "position": {
+                    "x": 1927,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "3c3715d1-efe9-474f-8da7-60d4e4ab6016",
+                "label": "办理",
+                "zIndex": 129,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 69290997694213070,
+            "nodeType": 2
+        },
+        {
+            "id": 36028942492695730,
+            "cell": {
+                "position": {
+                    "x": 1927,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "af6ce811-b85a-4be6-9fbd-e5d59f6506a4",
+                "label": "办理",
+                "zIndex": 130,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 24562859029109508,
+            "nodeType": 2
+        },
+        {
+            "id": 56193912231767190,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c5b22e56-490f-4abe-a575-f450cf6b41ca",
+                "label": "办理",
+                "zIndex": 131,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 79192236308907790,
+            "nodeType": 2
+        },
+        {
+            "id": 69981903733752550,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "0115444b-3b00-4db0-a01f-a6a81829bcf7",
+                "label": "办理",
+                "zIndex": 132,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 32482000044173410,
+            "nodeType": 2
+        },
+        {
+            "id": 36555525400521160,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": 877
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c9ad6520-606e-4cd5-a48c-225af4eff07f",
+                "label": "办理",
+                "zIndex": 133,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 80068175000859070,
+            "nodeType": 2
+        },
+        {
+            "id": 94497927080296900,
+            "cell": {
+                "position": {
+                    "x": 2993,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "582e1fe7-f3e1-4f76-bc4b-f5e7b048b311",
+                "label": "办理",
+                "zIndex": 134,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 93545132160931280,
+            "nodeType": 2
+        },
+        {
+            "id": 93545132160931280,
+            "cell": {
+                "position": {
+                    "x": 2993,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ff819d16-3875-4e28-8254-4e999a98be41",
+                "label": "办理",
+                "zIndex": 135,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 52123065615803176,
+            "nodeType": 2
+        },
+        {
+            "id": 52123065615803176,
+            "cell": {
+                "position": {
+                    "x": 2993,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "4651dca5-adec-400e-b664-0c38a64fc7df",
+                "label": "办理",
+                "zIndex": 136,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 47904675398291640,
+            "nodeType": 2
+        },
+        {
+            "id": 10869186454133040,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "91133225-f307-4590-a8b1-cd2db005eb2a",
+                "label": "办理",
+                "zIndex": 137,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 90144175833626020,
+            "nodeType": 2
+        },
+        {
+            "id": 81670884028425230,
+            "cell": {
+                "position": {
+                    "x": 2645,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "20d2fb3f-9179-4d58-afe2-7c56f82afde2",
+                "label": "办理",
+                "zIndex": 138,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 94788263113602990,
+            "nodeType": 2
+        },
+        {
+            "id": 4528674545760691,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "46b5dd85-033e-47a3-adfe-990f93c68553",
+                "label": "办理",
+                "zIndex": 139,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 62418353073285336,
+            "nodeType": 2
+        },
+        {
+            "id": 66561739932824590,
+            "cell": {
+                "position": {
+                    "x": 2289,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "5daab2de-ce51-403d-aa0b-385b4eddc943",
+                "label": "办理",
+                "zIndex": 140,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 74982445039211520,
+            "nodeType": 2
+        },
+        {
+            "id": 2979822751243666,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": 429
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "06ae6d89-8b80-4b2d-b0dc-dfc9891ae3fd",
+                "label": "办理",
+                "zIndex": 141,
+                "data": {
+                    "title": "运营主管"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "运营主管",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030596",
+            "jobNumber11": 0,
+            "parentId": 83458997739510620,
+            "nodeType": 2
+        },
+        {
+            "id": 34833633383455708,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c299a9da-4fde-4313-b3be-8ce5058a0bee",
+                "label": "办理",
+                "zIndex": 142,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 2979822751243666,
+            "nodeType": 2
+        },
+        {
+            "id": 79192236308907790,
+            "cell": {
+                "position": {
+                    "x": 2109,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "5e0f1e16-c85e-4ee3-b408-015d712db22f",
+                "label": "办理",
+                "zIndex": 143,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 34833633383455708,
+            "nodeType": 2
+        },
+        {
+            "id": 21377115333928830,
+            "cell": {
+                "position": {
+                    "x": 2289,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f21a709d-03a4-44c0-b0b1-ffea57f149f2",
+                "label": "办理",
+                "zIndex": 144,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 66561739932824590,
+            "nodeType": 2
+        },
+        {
+            "id": 34740198837560830,
+            "cell": {
+                "position": {
+                    "x": 2289,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "74e846c1-9d85-4019-8f35-f89d85c0f6bd",
+                "label": "办理",
+                "zIndex": 145,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 21377115333928830,
+            "nodeType": 2
+        },
+        {
+            "id": 32482000044173410,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "cef51d35-52fc-4670-a226-ce0677907c24",
+                "label": "办理",
+                "zIndex": 146,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 31034757239082976,
+            "nodeType": 2
+        },
+        {
+            "id": 31034757239082976,
+            "cell": {
+                "position": {
+                    "x": 2470,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "c802e846-5ca7-4a81-b783-ce58a0e32c7e",
+                "label": "办理",
+                "zIndex": 147,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 4528674545760691,
+            "nodeType": 2
+        },
+        {
+            "id": 48319697495336110,
+            "cell": {
+                "position": {
+                    "x": 2645,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b08fc45e-20c9-4d9e-b5c3-92bcb2090af4",
+                "label": "办理",
+                "zIndex": 148,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 81670884028425230,
+            "nodeType": 2
+        },
+        {
+            "id": 63673728168392920,
+            "cell": {
+                "position": {
+                    "x": 2645,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "b1b5687c-5eab-45da-be5d-9df358a49a33",
+                "label": "办理",
+                "zIndex": 149,
+                "data": {
+                    "title": "总经理审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "总经理审批",
+            "handleObjectType": 5,
+            "handleObjectId": "1650750130187517969",
+            "jobNumber11": 0,
+            "parentId": 48319697495336110,
+            "nodeType": 2
+        },
+        {
+            "id": 99703071079649170,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": 581
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "ad10984a-ac97-4c42-891a-caf521d0b92a",
+                "label": "办理",
+                "zIndex": 150,
+                "data": {
+                    "title": "合同审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "合同审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030599",
+            "jobNumber11": 0,
+            "parentId": 10869186454133040,
+            "nodeType": 2
+        },
+        {
+            "id": 80068175000859070,
+            "cell": {
+                "position": {
+                    "x": 2817,
+                    "y": 727
+                },
+                "size": {
+                    "width": 150,
+                    "height": 90
+                },
+                "view": "vue-shape-view",
+                "attrs": {
+                    "body": {
+                        "rx": 40,
+                        "ry": 46
+                    }
+                },
+                "shape": "handle-btn",
+                "effect": [
+                    "title"
+                ],
+                "ports": {
+                    "groups": {
+                        "top": {
+                            "position": "top",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "right": {
+                            "position": "right",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "bottom": {
+                            "position": "bottom",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        },
+                        "left": {
+                            "position": "left",
+                            "attrs": {
+                                "circle": {
+                                    "r": 4,
+                                    "magnet": true,
+                                    "stroke": "#5F95FF",
+                                    "strokeWidth": 1,
+                                    "fill": "#fff",
+                                    "style": {
+                                        "visibility": "hidden"
+                                    }
+                                }
+                            }
+                        }
+                    },
+                    "items": [
+                        {
+                            "group": "top",
+                            "id": "7c28bc2b-c6cc-4e06-8105-6f5dd3948bd5"
+                        },
+                        {
+                            "group": "right",
+                            "id": "31a819db-64a6-4159-81c7-1123aed197dd"
+                        },
+                        {
+                            "group": "bottom",
+                            "id": "c4214bc5-3a3f-4fbe-b18c-42a840927493"
+                        },
+                        {
+                            "group": "left",
+                            "id": "b1d20c82-3718-40a7-9b6d-a0c0597ed50b"
+                        }
+                    ]
+                },
+                "id": "f90d0015-0ae8-45b4-9544-615bedbba43e",
+                "label": "办理",
+                "zIndex": 151,
+                "data": {
+                    "title": "财务审批"
+                }
+            },
+            "nodeButtonSet": "1,2,4",
+            "nodeName": "财务审批",
+            "handleObjectType": 2,
+            "handleObjectId": "1650750129810030598",
+            "jobNumber11": 0,
+            "parentId": 99703071079649170,
+            "nodeType": 2
+        }
+    ]
+}
+
+export default data;

+ 41 - 0
src/views/JXSK/production/processConfig/endBtn.vue

@@ -0,0 +1,41 @@
+<template>
+    <div class="end-btn">
+        <div class="icon">
+            <div class="fan"></div>
+        </div>
+        <div class="text">结束</div>
+    </div>
+</template>
+<style lang="scss">
+    .end-btn{
+        height: 90px;
+        width: 150px;
+        background: #fff;
+        text-align: center;
+        box-shadow: 0px 2px 10px 1px rgba(51,51,51,0.1);
+        border-radius: 10px 10px 10px 10px;
+        padding: 10px 0;
+        .icon {
+            height: 40px;
+            width: 40px;
+            background: #FF655B;
+            border-radius: 20px;
+            margin: 0 auto;
+            padding: 12px;
+            //画一个三角形
+            .fan {
+                height: 16px;
+                height: 16px;
+                border-radius: 2px;
+                background: #fff;
+                
+            }
+            
+        }
+        .text{
+            color: #333;
+            font-size: 14px;
+            margin-top: 10px; 
+        }
+    }
+</style>

+ 68 - 0
src/views/JXSK/production/processConfig/handleBtn.vue

@@ -0,0 +1,68 @@
+<template>
+  <div class="handle-btn">
+    <div class="icon-box">
+      <div class="icon">
+        <i class="iconfont icon-icomx_banli"></i>
+      </div>
+      <div class="icon-text">工序</div>
+    </div>
+    <div class="title">{{title || '待配置'}}</div>
+  </div>
+</template>
+<script setup>
+import { defineProps, inject, ref } from "vue";
+
+let title = ref("");
+let getNode = inject("getNode");
+const node = getNode();
+title.value = node.store.data.label;
+// node.on("change:data", ({ current }) => {
+//   title.value = current.label;
+// });
+</script>
+<style lang="scss">
+.handle-btn {
+  height: 90px;
+  width: 150px;
+  background: #fff;
+  text-align: center;
+  box-shadow: 0px 2px 10px 1px rgba(51, 51, 51, 0.1);
+  border-radius: 10px 10px 10px 10px;
+  padding: 10px;
+  .title {
+    width: 100%;
+    height: 40px;
+    line-height: 40px;
+    padding: 0 20px;
+    text-align: left;
+    background: #eee;
+    border-radius: 10px;
+    margin-top: 10px;
+    //文字一行多余省略
+    white-space: nowrap;
+    overflow: hidden;
+    text-overflow: ellipsis;
+  }
+  .icon-box {
+    display: flex;
+    height: 20px;
+    line-height: 20px;
+    color: #333;
+    font-size: 14px;
+    .icon {
+      height: 20px;
+      width: 20px;
+      border-radius: 10px;
+      background: #ff9315;
+      color: #fff;
+      i {
+        color: #fff;
+        font-size: 12px;
+      }
+    }
+    .icon-text {
+      margin-left: 10px;
+    }
+  }
+}
+</style>

+ 67 - 0
src/views/JXSK/production/processConfig/handleBtnOne.vue

@@ -0,0 +1,67 @@
+<template>
+  <div class="handle-btn">
+    <div class="icon-box">
+      <div class="icon">
+        <i class="iconfont icon-icomx_banli"></i>
+      </div>
+      <div class="icon-text">自定义工序</div>
+    </div>
+    <div class="title">{{title || '待配置'}}</div>
+  </div>
+</template>
+<script setup>
+import { defineProps, inject, ref } from "vue";
+
+let title = ref("");
+let getNode = inject("getNode");
+const node = getNode();
+node.on("change:data", ({ current }) => {
+  title.value = current.title;
+});
+</script>
+<style lang="scss">
+.handle-btn {
+  height: 90px;
+  width: 150px;
+  background: #fff;
+  text-align: center;
+  box-shadow: 0px 2px 10px 1px rgba(51, 51, 51, 0.1);
+  border-radius: 10px 10px 10px 10px;
+  padding: 10px;
+  .title {
+    width: 100%;
+    height: 40px;
+    line-height: 40px;
+    padding: 0 20px;
+    text-align: left;
+    background: #eee;
+    border-radius: 10px;
+    margin-top: 10px;
+    //文字一行多余省略
+    white-space: nowrap;
+    overflow: hidden;
+    text-overflow: ellipsis;
+  }
+  .icon-box {
+    display: flex;
+    height: 20px;
+    line-height: 20px;
+    color: #333;
+    font-size: 14px;
+    .icon {
+      height: 20px;
+      width: 20px;
+      border-radius: 10px;
+      background: #ff9315;
+      color: #fff;
+      i {
+        color: #fff;
+        font-size: 12px;
+      }
+    }
+    .icon-text {
+      margin-left: 10px;
+    }
+  }
+}
+</style>

+ 414 - 0
src/views/JXSK/production/processConfig/index.vue

@@ -0,0 +1,414 @@
+<template>
+	<div class="user">
+		<div class="tree">
+			<treeList
+				:data="treeListData"
+				v-model="sourceList.pagination.tenantId"
+				node-key="id"
+				@change="treeChange"
+			>
+			</treeList>
+		</div>
+		<div class="content">
+			<byTable
+				:source="sourceList.data"
+				:pagination="sourceList.pagination"
+				:config="config"
+				:loading="loading"
+				highlight-current-row
+				:selectConfig="selectConfig"
+				:table-events="{
+					//element talbe事件都能传
+					select: select,
+				}"
+				:action-list="[
+					{
+						text: '添加流程',
+						action: () => openModal('add'),
+						disabled: !sourceList.pagination.tenantId,
+					},
+				]"
+				@get-list="getList"
+			>
+				<template #slotName="{ item }">
+					{{ item.createTime }}
+				</template>
+				
+			</byTable>
+		</div>
+		<el-dialog
+			:title="modalType == 'add' ? '新增' : '编辑'"
+			v-model="dialogVisible"
+			width="500"
+			v-loading="loading"
+		>
+			<byForm
+				:formConfig="formConfig"
+				:formOption="formOption"
+				v-model="formData.data"
+				:rules="rules"
+				ref="byform"
+			>
+			</byForm>
+			<template #footer>
+				<el-button @click="dialogVisible = false" size="large"
+					>取 消</el-button
+				>
+				<el-button
+					type="primary"
+					v-no-double-click="submitForm"
+					size="large"
+					:loading="submitLoading"
+				>
+					确 定
+				</el-button>
+			</template>
+		</el-dialog>
+		<!-- 版本切换模态框 -->
+		<el-dialog
+			title="版本切换"
+			v-model="versionVisible"
+			width="500"
+			v-loading="loading"
+		>
+			<el-form>
+				<el-form-item  label="流程名称">
+					<el-input
+						v-model="formData.flowName"
+						disabled
+						placeholder="请输入流程名称"
+					></el-input>
+				</el-form-item>
+				<el-form-item label="当前版本">
+					<el-select v-model="formData.version" placeholder="请选择">
+						<el-option
+							v-for="item in versionList"
+							:key="item.id"
+							:label="'v' + item.versionNumber"
+							:value="item.id"
+						></el-option>
+					</el-select>
+				</el-form-item>
+			</el-form>
+			<template #footer>
+				<el-button @click="versionVisible = false" size="large"
+					>取 消</el-button
+				>
+				<el-button
+					type="primary"
+					@click="changeVersion(formData.version)"
+					size="large"
+					:loading="submitLoading"
+				>
+					确 定
+				</el-button>
+			</template>
+		</el-dialog>
+	</div>
+</template>
+    
+  <script setup  name="ProcessConfig">
+/* eslint-disable vue/no-unused-components */
+import { ElMessage, ElMessageBox } from 'element-plus'
+import byTable from '@/components/byTable/index'
+import byForm from '@/components/byForm/index'
+import treeList from '@/components/treeList/index'
+import { computed, defineComponent, ref } from 'vue'
+const loading = ref(false)
+const submitLoading = ref(false)
+const sourceList = ref({
+	data: [],
+	pagination: {
+		total: 3,
+		pageNum: 1,
+		pageSize: 10,
+	},
+})
+let dialogVisible = ref(false)
+const versionVisible = ref(false)
+let modalType = ref('add')
+let rules = ref({
+	roleKey: [{ required: true, message: '请选择部门', trigger: 'blur' }],
+	nickName: [{ required: true, message: '姓名不能为空', trigger: 'blur' }],
+	userName: [{ required: true, message: '用户名不能为空', trigger: 'blur' }],
+})
+const { proxy } = getCurrentInstance()
+const selectConfig = computed(() => {
+	return []
+})
+const config = computed(() => {
+	return [
+		{
+			attrs: {
+				label: '功能模块',
+				prop: 'classifyName',
+			},
+		},
+		{
+			attrs: {
+				label: '流程标识',
+				prop: 'flowKey',
+			},
+		},
+		{
+			attrs: {
+				label: '流程名称',
+				prop: 'flowName',
+			},
+		},
+
+		{
+			attrs: {
+				label: '当前版本',
+			},
+			// 渲染 el-button,一般用在最后一列。
+			renderHTML(row) {
+				return [
+					{
+						attrs: {
+							label: 'v' + row.versionNumber,
+							type: 'primary',
+							text: true,
+						},
+						el: 'button',
+						click() {
+							getVersionList(row)
+						},
+					},
+					
+				]
+			},
+		},
+
+		{
+			attrs: {
+				label: '操作',
+				width: '200',
+				align: 'right',
+			},
+			// 渲染 el-button,一般用在最后一列。
+			renderHTML(row) {
+				return [
+					{
+						attrs: {
+							label: '新建版本',
+							type: 'primary',
+							text: true,
+						},
+						el: 'button',
+						click() {
+							getDtl(row)
+						},
+					},
+					
+				]
+			},
+		},
+	]
+})
+
+let versionList = ref([])
+
+const getVersionList = (row) => {
+	formData.flowName = row.flowName
+	formData.version = row.id
+	versionVisible.value = true
+	proxy.post('/flowDefinition/getVersionList',{
+		flowKey:row.flowKey,
+		tenantId:row.tenantId
+	}).then((message) => {
+		versionList.value = message
+		console.log(versionList)
+	})
+}
+const changeVersion = (id) => {
+	if(!id){
+		ElMessage.error('请选择版本')
+		return
+	}
+	proxy.post('/flowDefinition/updateVersion',{
+		id:id
+	}).then((message) => {
+		ElMessage.success('切换成功')
+		versionVisible.value = false
+		getList()
+	})
+}
+
+let formData = reactive({
+	data: {},
+})
+const formOption = reactive({
+	inline: true,
+	labelWidth: 100,
+	itemWidth: 100,
+	rules: [],
+})
+const byform = ref(null)
+const treeListData = ref([])
+const formConfig = computed(() => {
+	return [
+		
+		{
+			type: 'select',
+			label: '功能模块',
+			prop: 'titleTemplate',
+			isLoad: {
+				url: `/flowInfo/getClassifyList`,
+				labelKey: 'stringArray',
+				labelVal: 'stringArray',
+				method: 'post',
+				resUrl: '',
+			},
+			fn: (data) => {
+				getFlowList(data)
+			},
+		},
+		{
+			type: 'select',
+			label: '流程名称',
+			prop: 'flowInfoId',
+			data:[],
+		},
+	]
+})
+
+
+const getFlowList = (name) => {
+	proxy.post('/flowInfo/page',{
+		pageNum:1,
+		pageSize:1000,
+		status: 1,
+		classifyName:name
+	}).then((message) => {
+		formConfig.value[1].data = message.rows.map(item => {
+			return {
+				label:item.flowName,
+				value:item.id
+			}
+		})
+		
+	})
+}
+
+const newPassword = () => {
+	formData.data.password = generatePassword()
+}
+const generatePassword = () => {
+	var length = 12,
+		charset =
+			'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789',
+		password = ''
+	for (var i = 0, n = charset.length; i < length; ++i) {
+		password += charset.charAt(Math.floor(Math.random() * n))
+	}
+	return password
+}
+
+const getTreeList = () => {
+	proxy.post('/tenantInfo/list').then((message) => {
+		message.map((item) => {
+			item.label = item.enterpriseName
+			item.id = item.tenantId
+			item.children = []
+		})
+
+		treeListData.value = message
+		console.log(treeListData.value)
+	})
+}
+const getList = async (req) => {
+	sourceList.value.pagination = { ...sourceList.value.pagination, ...req }
+	loading.value = true
+	proxy
+		.post('/flowDefinition/page', sourceList.value.pagination)
+		.then((message) => {
+			sourceList.value.data = message.rows
+			sourceList.value.pagination.total = message.total
+			setTimeout(() => {
+				loading.value = false
+			}, 200)
+		})
+}
+
+const treeChange = (e) => {
+	console.log(e)
+	sourceList.value.pagination.tenantId = e.id
+	getList({ tenantId: e.id })
+}
+
+const openModal = () => {
+	dialogVisible.value = true
+	modalType.value = 'add'
+	formData.data = {
+		userType: 1,
+	}
+}
+const TreetenantId = ref('')
+const selection = ref({
+	data: [],
+})
+const select = (_selection, row) => {
+	selection.value.data = _selection
+	console.log(_selection.length)
+}
+
+const tree = ref(null)
+const submitForm = () => {
+	byform.value.handleSubmit((valid) => {
+		
+		proxy
+			.post(
+				'/flowDefinition/' + modalType.value,
+				{
+					...formData.data,
+					tenantId: sourceList.value.pagination.tenantId,
+				},
+			)
+			.then((res) => {
+				ElMessage({
+					message: modalType.value == 'add' ? '添加成功' : '编辑成功',
+					type: 'success',
+				})
+				dialogVisible.value = false
+				getList()
+			})
+	})
+}
+
+const getDept = () => {
+	proxy.get('/system/user/deptTree').then((res) => {
+		//formConfig.value[0].data = res.data
+	})
+}
+
+const router = useRouter();
+const getDtl = (row) => {
+	formData.data = { ...row }
+	
+	router.push({
+		path: 'processChart',
+		query: {
+			id: row.id,
+			flowInfoId:row.flowInfoId,
+			tenantId:row.tenantId
+		},
+	})
+}
+getTreeList()
+getList()
+</script>
+    
+<style lang="scss" scoped>
+.user {
+	padding: 20px;
+	display: flex;
+	justify-content: space-between;
+	.tree {
+		width: 300px;
+	}
+	.content {
+		width: calc(100% - 320px);
+	}
+}
+</style>

+ 57 - 0
src/views/JXSK/production/processConfig/processChart.vue

@@ -0,0 +1,57 @@
+<template>
+	<div class="processChart">
+		<div class="from">
+			<div class="commons-title">基础配置</div>
+			<div>
+				<el-form labelPosition='top'>
+					<el-form-item label="流程标题" label-width="80px">
+						<el-input v-model="title" placeholder="请输入流程标题"></el-input>
+						
+					</el-form-item>
+				</el-form>
+			</div>
+		</div>
+		<div class="content">
+			<div class="commons-title">流程节点配置</div>
+			<div class="chart-warp">
+				<vueFlow :title='title' @changeTitle="e => title = e"></vueFlow>
+			</div>
+		</div>
+	</div>
+</template>
+
+<script setup name="ProcessChart">
+
+import vueFlow from '@/views/process/processConfig/vueFlow.vue'
+const title = ref('')
+onMounted(() => {
+	
+})
+</script>
+
+<style lang="scss" scoped>
+.processChart {
+	padding: 20px;
+	display: flex;
+	justify-content: space-between;
+	.from {
+		width: 400px;
+		background: #fff;
+		border-radius: 5px;
+		padding: 20px;
+	}
+	.content {
+		width: calc(100% - 420px);
+		border-radius: 5px;
+		padding: 20px;
+		background: #fff;
+	}
+}
+.chart-warp {
+	height: calc(100vh - 280px);
+}
+
+</style>
+<style>
+
+</style>

+ 56 - 0
src/views/JXSK/production/processConfig/startBtn.vue

@@ -0,0 +1,56 @@
+<template>
+    <div class="start-btn"  @click="formTableChange">
+        <div class="icon">
+            <div class="sanjiao"></div>
+        </div>
+        <div class="text">开始{{title}}</div>
+    </div>
+</template>
+<script setup>
+    import { defineProps, inject, ref } from 'vue'
+    
+    let title = ref('')
+    let getNode = inject('getNode')
+    const node = getNode()
+    node.on('change:data', ({current}) => {
+        title.value = current.title
+    })
+
+</script>
+<style lang="scss">
+    .start-btn{
+        height: 90px;
+        width: 150px;
+        background: #fff;
+        text-align: center;
+        box-shadow: 0px 2px 10px 1px rgba(51,51,51,0.1);
+        border-radius: 10px 10px 10px 10px;
+        padding: 10px 0;
+        .icon {
+            height: 40px;
+            width: 40px;
+            background: #39C55A;
+            border-radius: 20px;
+            margin: 0 auto;
+            //画一个三角形
+            .sanjiao {
+                width: 0;
+                height: 0;
+                border-left: 10px solid transparent;
+                border-right: 10px solid transparent;
+                border-bottom: 10px solid #fff;
+                margin: 0 auto;
+                position: relative;
+                top: 15px;
+                left: 2px;
+                transform: rotate(90deg);
+            }
+            
+        }
+        .text{
+            color: #333;
+            font-size: 14px;
+            margin-top: 10px; 
+        }
+    }
+</style>

+ 775 - 0
src/views/JXSK/production/processConfig/vueFlow.vue

@@ -0,0 +1,775 @@
+<template >
+  <div class="vueFlow">
+    <div id="container"></div>
+    <div id="stencil"></div>
+    <div id="graph-container"></div>
+    <div id="minimap"></div>
+  </div>
+  <!-- <el-button @click="submitAll()">aaaa</el-button> -->
+  <el-dialog title="节点信息配置" v-model="dialogVisible" width="500" v-loading="loading" v-if="dialogVisible">
+    <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform">
+    </byForm>
+    <template #footer>
+      <div>
+        <el-button @click="dialogVisible = false" size="large">取 消</el-button>
+        <el-button type="danger" @click="deleteFlowDefinitionNodeObj()" size="large" :loading="submitLoading">
+          删 除
+        </el-button>
+        <el-button type="primary" @click="submitForm" size="large" :loading="submitLoading">
+          确 定
+        </el-button>
+      </div>
+    </template>
+  </el-dialog>
+</template>
+<script lang="ts" setup>
+import {
+  defineComponent,
+  ref,
+  onMounted,
+  onUnmounted,
+  watch,
+  reactive,
+  toRefs,
+  computed,
+  nextTick,
+  getCurrentInstance,
+  onDeactivated,
+  onActivated,
+} from "vue";
+import byForm from "@/components/byForm/index";
+import { Graph, Shape } from "@antv/x6";
+import { Stencil } from "@antv/x6-plugin-stencil";
+import { Transform } from "@antv/x6-plugin-transform";
+import { Selection } from "@antv/x6-plugin-selection";
+import { Snapline } from "@antv/x6-plugin-snapline";
+import { Keyboard } from "@antv/x6-plugin-keyboard";
+import { Clipboard } from "@antv/x6-plugin-clipboard";
+import { register } from "@antv/x6-vue-shape";
+import { History } from "@antv/x6-plugin-history";
+import Cookies from "js-cookie";
+import { ElMessage, ElMessageBox } from "element-plus";
+import startBtn from "./startBtn.vue";
+import endBtn from "./endBtn.vue";
+import handleBtn from "./handleBtn.vue";
+import handleBtnOne from "./handleBtnOne.vue";
+
+import branchBtn from "./branchBtn.vue";
+import { MiniMap } from "@antv/x6-plugin-minimap";
+import useTagsViewStore from "@/store/modules/tagsView";
+import { rectToBox } from "@vue-flow/core/dist/utils/graph";
+import { async } from "@antv/x6/lib/registry/marker/main";
+defineProps({
+  title: {
+    type: Object,
+    default: "",
+  },
+  nodeObject: {
+    type: String,
+    default: "",
+  },
+});
+const { proxy } = getCurrentInstance();
+const flowNodeObj = ref({});
+const dialogVisible = ref(false);
+const loading = ref(false);
+const byform = ref(null);
+const formData = reactive({
+  data: {},
+});
+const formOption = reactive({
+  inline: true,
+  labelWidth: 100,
+  itemWidth: 100,
+});
+const rules = reactive({
+  nodeName: [
+    {
+      required: true,
+      message: "请输入工序名称",
+      trigger: "blur",
+    },
+  ],
+});
+const formConfig = computed(() => {
+  return [
+    {
+      type: "input",
+      prop: "nodeName",
+      label: "工序名称",
+      required: true,
+      itemType: "text",
+    },
+  ];
+});
+
+let graph;
+const submitFormData = {
+  flowInfoId: null,
+  titleTemplate: null,
+  tenantId: Cookies.get("tenantId"),
+  nodeObject: "",
+  lineObject: "",
+  flowDefinitionNodeList: [],
+};
+
+const deleteFlowDefinitionNodeObj = () => {
+  graph.removeNode(formData.data.id);
+  delete flowNodeObj.value[formData.data.id];
+  dialogVisible.value = false;
+  let productionId = formData.data.cell.store.data.productionId;
+  // type 1为自定义工序 0为固定工序
+  proxy.$emit("removeRow", { id: productionId, type: "1" });
+};
+
+const submitForm = () => {
+  byform.value.handleSubmit((valid) => {
+    formData.data.cell.setData({
+      title: formData.data.nodeName,
+    });
+    flowNodeObj.value[formData.data.id].nodeName = formData.data.nodeName;
+    dialogVisible.value = false;
+    let cell = formData.data.cell;
+    let productionId = cell.store.data.productionId;
+    let name = cell.store.data.data.title;
+    proxy.$emit("changeName", { productionId, name });
+  });
+};
+
+const submitAll = () => {
+  const nodeList = graph.toJSON().cells;
+  submitFormData.nodeObject = JSON.stringify(nodeList);
+  console.log(nodeList, "asda");
+  // return;
+  const arr = nodeList
+    .filter((x) => x.shape != "edge")
+    .filter((y) => y.productionId);
+  const newArr = arr.map((x) => x.productionId);
+  if (new Set(newArr).size != newArr.length) {
+    ElMessage({
+      message: "工序不可重复",
+      type: "info",
+    });
+    return false;
+  }
+  // 检验名称是否有填写
+  let nameArr = [];
+  for (const key in flowNodeObj.value) {
+    let value = flowNodeObj.value[key];
+    if (!value.nodeName) {
+      ElMessage({
+        message: "请配置工序名称",
+        type: "info",
+      });
+      return false;
+    }
+    nameArr.push(value);
+  }
+  // 名称不可重复
+  let newNameArr = nameArr.map((x) => x.nodeName.trim());
+  if (new Set(newNameArr).size != nameArr.length) {
+    ElMessage({
+      message: "工序名称不可相同",
+      type: "info",
+    });
+    return false;
+  }
+
+  return {
+    nodeObject: submitFormData.nodeObject,
+  };
+};
+
+//选取一个随机不重复的正整数id
+const randomId = () => {
+  const id = Math.floor(Math.random() * 100000000000000000);
+  if (flowNodeObj.value[id]) {
+    randomId();
+  } else {
+    return id;
+  }
+};
+
+const addVersion = () => {
+  const idObg = {};
+  for (let i = 0; i < submitFormData.flowDefinitionNodeList.length; i++) {
+    const element = submitFormData.flowDefinitionNodeList[i];
+    if (element.parentId == null && element.nodeName == "结束") {
+      ElMessage({
+        message: "有结束节点未连线,请配置",
+        type: "warning",
+      });
+      return;
+    }
+    if (isNaN(element.id)) {
+      if (idObg[element.id]) {
+        element.id = idObg[element.id];
+      } else {
+        const id = randomId();
+        idObg[element.id] = id;
+        element.id = id;
+      }
+    }
+    if (isNaN(element.parentId) && element.nodeName != "开始") {
+      if (idObg[element.parentId]) {
+        element.parentId = idObg[element.parentId];
+      } else {
+        const id = randomId();
+        idObg[element.parentId] = id;
+        element.parentId = id;
+      }
+    }
+    //nodeButtonSet转成字符串类型,用逗号隔开
+    if (element.nodeButtonSet) {
+      element.nodeButtonSet = element.nodeButtonSet.join(",");
+    }
+  }
+
+  proxy.post("/flowDefinition/addVersion", submitFormData).then((res) => {
+    ElMessage({
+      message: "保存成功",
+      type: "success",
+    });
+    useTagsViewStore().delView(router.currentRoute.value);
+    history.go(-1);
+  });
+};
+
+const pushRoom = (port: any) => {
+  if (port.node.shape == "handle-btn-one") {
+    flowNodeObj.value[port.node.id] = {
+      nodeName: "",
+      id: port.node.id,
+    };
+  }
+};
+
+//用于存储流程定义节点数据
+const antvInit = async (data) => {
+  graph = new Graph({
+    height: 600,
+    container: document.getElementById("graph-container")!,
+    grid: true,
+    onPortRendered: pushRoom,
+    mousewheel: {
+      enabled: true,
+      zoomAtMousePosition: true,
+      modifiers: "ctrl",
+      minScale: 0.5,
+      maxScale: 3,
+    },
+
+    connecting: {
+      allowLoop: false,
+      // router: 'manhattan',
+      connector: {
+        name: "rounded",
+        args: {
+          radius: 8,
+        },
+      },
+      anchor: "center",
+      connectionPoint: "anchor",
+      allowBlank: false,
+      snap: {
+        radius: 20,
+      },
+      createEdge() {
+        return new Shape.Edge({
+          attrs: {
+            line: {
+              stroke: "#A2B1C3",
+              strokeWidth: 2,
+              targetMarker: {
+                name: "block",
+                width: 12,
+                height: 8,
+              },
+            },
+          },
+          zIndex: 0,
+        });
+      },
+      validateConnection({ targetMagnet }) {
+        return !!targetMagnet;
+      },
+    },
+    highlighting: {
+      magnetAdsorbed: {
+        name: "stroke",
+        args: {
+          attrs: {
+            fill: "#5F95FF",
+            stroke: "#5F95FF",
+          },
+        },
+      },
+    },
+  });
+  graph.use(
+    new MiniMap({
+      container: document.getElementById("minimap"),
+    })
+  );
+  const stencil = new Stencil({
+    title: "流程图",
+    target: graph,
+    stencilGraphWidth: 360,
+    stencilGraphHeight: 280,
+    collapsable: true,
+    groups: [
+      {
+        title: "基础流程图",
+        name: "group1",
+      },
+    ],
+    layoutOptions: {
+      columns: 2,
+      columnWidth: 170,
+      rowHeight: 100,
+    },
+  });
+  document.getElementById("stencil")!.appendChild(stencil.container);
+  // #region 使用插件
+  graph
+    .use(
+      new Transform({
+        resizing: true,
+        rotating: true,
+      })
+    )
+    .use(
+      new Selection({
+        enabled: true,
+        rubberband: true,
+        showNodeSelectionBox: true,
+      })
+    )
+    .use(
+      new Snapline({
+        enabled: true,
+      })
+    )
+    .use(
+      new Keyboard({
+        enabled: true,
+      })
+    )
+    .use(
+      new Clipboard({
+        enabled: true,
+      })
+    )
+    .use(
+      new History({
+        enabled: true,
+      })
+    );
+
+  // 控制连接桩显示/隐藏
+  const showPorts = (ports: NodeListOf<SVGElement>, show: boolean) => {
+    for (let i = 0, len = ports.length; i < len; i += 1) {
+      ports[i].style.visibility = show ? "visible" : "hidden";
+    }
+  };
+  // 监听添加节点
+
+  graph.on("node:added", ({ node }) => {
+    if (node.store.data && node.store.data.shape == "handle-btn-one") {
+      let time = Date.now();
+      node.store.data.productionId = time;
+      proxy.$emit("addRow", {
+        time,
+      });
+    } else if (node.store.data && node.store.data.shape == "handle-btn") {
+      let name = node.store.data.label;
+      proxy.$emit("addRow", {
+        name,
+        nodeId: node.id,
+      });
+    }
+  });
+
+  graph.on("node:mouseenter", () => {
+    const container = document.getElementById("graph-container")!;
+    const ports = container.querySelectorAll(
+      ".x6-port-body"
+    ) as NodeListOf<SVGElement>;
+    showPorts(ports, true);
+  });
+  graph.on("node:mouseleave", () => {
+    const container = document.getElementById("graph-container")!;
+    const ports = container.querySelectorAll(
+      ".x6-port-body"
+    ) as NodeListOf<SVGElement>;
+    showPorts(ports, false);
+  });
+  // #endregion
+  graph.on("cell:click", ({ e, x, y, cell, view }) => {
+    if (cell.shape === "start-btn") {
+      return;
+    }
+    if (cell.shape === "end-btn") {
+      return;
+    }
+    if (cell.shape === "handle-btn" || cell.shape === "edge") {
+      ElMessageBox.confirm("是否删除", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      }).then(() => {
+        graph.removeNode(cell.id);
+        if (cell.shape === "handle-btn") {
+          proxy.$emit("removeRow", { id: cell.id, type: "0" });
+        }
+      });
+      return;
+    }
+    if (cell.shape === "handle-btn-one") {
+      formData.data.id = cell.id;
+      formData.data.cell = cell;
+      if (cell.store.data.data) {
+        formData.data.nodeName = cell.store.data.data.title;
+      } else {
+        formData.data.nodeName = "";
+      }
+      dialogVisible.value = true;
+    }
+  });
+  // #region 初始化图形
+  const ports = {
+    groups: {
+      top: {
+        position: "top",
+        attrs: {
+          circle: {
+            r: 4,
+            magnet: true,
+            stroke: "#5F95FF",
+            strokeWidth: 1,
+            fill: "#fff",
+            style: {
+              visibility: "hidden",
+            },
+          },
+        },
+      },
+      right: {
+        position: "right",
+        attrs: {
+          circle: {
+            r: 4,
+            magnet: true,
+            stroke: "#5F95FF",
+            strokeWidth: 1,
+            fill: "#fff",
+            style: {
+              visibility: "hidden",
+            },
+          },
+        },
+      },
+      bottom: {
+        position: "bottom",
+        attrs: {
+          circle: {
+            r: 4,
+            magnet: true,
+            stroke: "#5F95FF",
+            strokeWidth: 1,
+            fill: "#fff",
+            style: {
+              visibility: "hidden",
+            },
+          },
+        },
+      },
+      left: {
+        position: "left",
+        attrs: {
+          circle: {
+            r: 4,
+            magnet: true,
+            stroke: "#5F95FF",
+            strokeWidth: 1,
+            fill: "#fff",
+            style: {
+              visibility: "hidden",
+            },
+          },
+        },
+      },
+    },
+    items: [
+      {
+        group: "top",
+      },
+      {
+        group: "right",
+      },
+      {
+        group: "bottom",
+      },
+      {
+        group: "left",
+      },
+    ],
+  };
+  Graph.registerNode(
+    "custom-rect",
+    {
+      inherit: "rect",
+      width: 66,
+      height: 36,
+      attrs: {
+        body: {
+          strokeWidth: 1,
+          stroke: "#5F95FF",
+          fill: "#EFF4FF",
+        },
+        text: {
+          fontSize: 12,
+          fill: "#262626",
+        },
+      },
+      ports: { ...ports },
+    },
+    true
+  );
+
+  register({
+    shape: "start-btn",
+    width: 150,
+    height: 90,
+    component: startBtn,
+    effect: ["title"],
+    ports: { ...ports },
+    data: {
+      title: 80,
+    },
+  });
+  register({
+    shape: "handle-btn",
+    width: 150,
+    height: 90,
+    effect: ["title"],
+    component: handleBtn,
+    ports: { ...ports },
+  });
+  register({
+    shape: "handle-btn-one",
+    width: 150,
+    height: 90,
+    effect: ["title"],
+    component: handleBtnOne,
+    ports: { ...ports },
+  });
+
+  register({
+    shape: "branch-btn",
+    width: 150,
+    height: 90,
+    effect: ["title"],
+    component: branchBtn,
+    ports: { ...ports },
+  });
+
+  register({
+    shape: "end-btn",
+    width: 150,
+    height: 90,
+    effect: ["title"],
+    component: endBtn,
+    ports: { ...ports },
+  });
+  // const r1 = graph.createNode({
+  // 	shape: 'start-btn',
+  // 	label: '开始',
+  // 	zIndex: 100,
+  // 	attrs: {
+  // 		body: {
+  // 			rx: 20,
+  // 			ry: 26,
+  // 		},
+  // 	},
+  // 	data: {
+  // 		title: 80,
+  // 	},
+
+  // })
+  const r2 = graph.createNode({
+    shape: "handle-btn",
+    label: "办理",
+    zIndex: 100,
+    attrs: {
+      body: {
+        rx: 40,
+        ry: 46,
+      },
+    },
+  });
+
+  const r3 = graph.createNode({
+    shape: "branch-btn",
+    label: "分支",
+    zIndex: 100,
+    attrs: {
+      body: {
+        rx: 40,
+        ry: 46,
+      },
+    },
+  });
+
+  const r4 = graph.createNode({
+    shape: "end-btn",
+    label: "结束",
+    zIndex: 100,
+    attrs: {
+      body: {
+        rx: 20,
+        ry: 26,
+      },
+    },
+  });
+
+  const r5 = graph.createNode({
+    shape: "handle-btn-one",
+    label: "自定义工序",
+    productionId: "",
+    zIndex: 100,
+    attrs: {
+      body: {
+        rx: 40,
+        ry: 46,
+      },
+    },
+  });
+
+  let arr = [];
+  const resList = await proxy.post("/productionProcesses/page", {
+    pageNum: 1,
+    pageSize: 9999,
+  });
+  arr = resList.rows.map((x) => {
+    return graph.createNode({
+      shape: "handle-btn",
+      label: x.name,
+      productionId: x.id,
+      zIndex: 100,
+      attrs: {
+        body: {
+          rx: 20,
+          ry: 26,
+        },
+      },
+    });
+  });
+
+  stencil.load([...arr, r5], "group1");
+
+  if (data) {
+    graph.fromJSON(data);
+  } else {
+    graph.addNode({
+      shape: "start-btn",
+      x: 200,
+      y: 20,
+      label: "开始",
+      id: 1,
+      attrs: {},
+    });
+
+    graph.addNode({
+      shape: "end-btn",
+      x: 200,
+      y: 300,
+      label: "结束",
+      id: 99,
+      attrs: {},
+    });
+  }
+};
+
+const getFlowInfo = (data) => {
+  if (data) {
+    antvInit(data);
+  } else {
+    antvInit();
+  }
+};
+
+onActivated(() => {});
+onDeactivated(() => {
+  console.log(window.document.getElementById("minimap").children);
+  if (window.document.getElementById("minimap").children.length > 1) {
+    window.document.getElementById("minimap").children[0].remove();
+  }
+});
+onMounted(() => {
+  if (proxy.nodeObject) {
+    let data = JSON.parse(proxy.nodeObject);
+    getFlowInfo(data);
+  } else {
+    getFlowInfo();
+  }
+});
+defineExpose({
+  submitAll,
+});
+</script>
+<style lang="scss">
+#minimap .x6-widget-minimap {
+  border: 1px solid #dcdcdc;
+}
+.x6-widget-stencil-group-title {
+  display: none !important;
+}
+.x6-widget-stencil-title {
+  display: none;
+}
+.x6-widget-stencil-content {
+  top: 0 !important;
+}
+.vueFlow {
+  // position: relative;
+  display: flex;
+  justify-content: space-between;
+  overflow: hidden;
+  height: 600px;
+  .x6-graph {
+    width: 100% !important;
+  }
+  #stencil {
+    // position: fixed;
+    position: absolute;
+    top: 90px;
+    left: 40px;
+    z-index: 100;
+    width: 360px;
+    height: 600px;
+    background: #fff;
+    overflow: hidden;
+    background: #eee;
+    border-radius: 20px;
+  }
+  #container {
+  }
+  #graph-container {
+    // width: 100%;
+    width: 100%;
+    // position: absolute;
+    // right: 0;
+    // top: 0;
+  }
+}
+// .x6-graph-svg {
+//   height: 600px !important;
+// }
+.x6-graph {
+  height: 1000px !important;
+}
+// .x6-widget-stencil-group {
+//   overflow: none !important;
+// }
+</style>

+ 107 - 0
src/views/JXSK/production/processConfig/vueFlow2.vue

@@ -0,0 +1,107 @@
+<style lang="scss" scoped>
+.container{
+    height: 100%;
+}
+.my-flow {
+	margin: 10px;
+	height: 700px;
+
+	//   :deep(.node-light) {
+	//     background: none;
+	//   }
+	//   :deep(.node-dark) {
+	//     background: #eeeeee;
+	//   }
+}
+</style>
+<template>
+	<div class="container">
+		<el-row class="mb-4">
+			<el-button type="primary" @click="resetTransform">重置</el-button>
+		</el-row>
+
+		<VueFlow
+			fit-view-on-init
+			class="my-flow"
+			v-model="elements"
+		>
+			<Background />
+			<Panel :position="PanelPosition.TopRight">
+                <button type="button" @click="addRandomNode('办理')">办理</button>
+                <button type="button" style="margin-left:10px" @click="addRandomNode('分支')">分支</button>
+                <button type="button" style="margin-left:10px" @click="addRandomNode('结束')">结束</button>
+            </Panel>
+			<!-- <Controls /> -->
+		</VueFlow>
+	</div>
+</template>
+ 
+ 
+<script lang="ts" setup name="DemoBpmn">
+import '@vue-flow/core/dist/style.css'
+/* import the default theme (optional) */
+import '@vue-flow/core/dist/theme-default.css'
+
+import {
+	Background,
+	Panel,
+	PanelPosition,
+	Controls,
+} from '@vue-flow/additional-components'
+import { VueFlow, useVueFlow } from '@vue-flow/core'
+import { ref, watch } from 'vue'
+import { ElMessage } from 'element-plus'
+
+const data = [
+	{ id: '1', type: 'input', label: '开始', position: { x: 250, y: 5 } },
+	
+]
+let elements = ref(data)
+
+const isHidden = ref(false)
+
+let {
+	onPaneReady,
+	onNodeDragStop,
+	onConnect,
+	addEdges,
+	setTransform,
+	toObject,
+	nodes,
+	edges,
+    applyNodeChanges,
+    dimensions,
+    addNodes
+} = useVueFlow()
+
+function addRandomNode(_name) {
+  const nodeId = (nodes.value.length + 1).toString()
+
+  const newNode = {
+    id: nodeId,
+    label: _name,
+    position: { x: 250, y: 100 }
+  }
+
+  addNodes([newNode])
+}
+
+watch(isHidden, () => {
+	nodes.value.forEach((n) => (n.hidden = isHidden.value))
+	edges.value.forEach((e) => (e.hidden = isHidden.value))
+})
+
+onPaneReady(({ fitView }) => {
+	fitView()
+})
+onNodeDragStop((e) => {
+    
+    console.log(e.node)
+})
+onConnect((params) => addEdges([params]))
+
+const resetTransform = () => {
+	elements.value = data
+	setTransform({ x: 0, y: 0, zoom: 1 })
+}
+</script>

+ 126 - 33
src/views/JXSK/production/workOrder/index.vue

@@ -189,11 +189,32 @@
       </template>
     </el-dialog>
 
-    <el-dialog :title="!isDetailOne ? '调整工艺' : '查看工艺'" v-model="dialogVisibleOne" width="60%" v-loading="loadingOne" destroy-on-close>
+    <el-dialog :title="!isDetailOne ? '调整工艺' : '查看工艺'" v-model="dialogVisibleOne" width="90%" v-loading="loadingOne" destroy-on-close>
       <byForm :formConfig="formConfigOne" :formOption="formOptionOne" v-model="formData.dataOne" :rules="rulesOne" ref="byformOne">
+        <template #lineSlot>
+          <div class="processChart" style="width:100%">
+            <div class="from">
+              <div class="commons-title">工序</div>
+              <!-- <div>
+                <el-form labelPosition='top'>
+                  <el-form-item label="工序" label-width="80px">
+                  </el-form-item>
+                </el-form>
+              </div> -->
+            </div>
+            <div class="content">
+              <div class="commons-title">工艺路线</div>
+              <div class="chart-warp">
+                <vueFlow :nodeObject="nodeObject" ref="vueFlowDom" @addRow="clickAdd" @changeName="changeName" @removeRow="removeRow"></vueFlow>
+              </div>
+            </div>
+          </div>
+
+        </template>
+
         <template #slot>
           <div style="width: 100%" class="tableDrop">
-            <el-button type="primary" plain @click="clickAdd">添加工序</el-button>
+            <!-- <el-button type="primary" plain @click="clickAdd">添加工序</el-button> -->
             <el-table :data="formData.dataOne.workOrderProductionProcessesList" style="width: 100%; margin-top: 16px" row-key="id">
               <el-table-column label="工序名称" width="150">
                 <template #default="{ row, $index }">
@@ -201,7 +222,7 @@
                     <el-form-item :prop="
                         'workOrderProductionProcessesList.' + $index + '.name'
                       " :rules="rulesOne.name" :inline-message="true">
-                      <el-input v-model="row.name" placeholder="请输入" />
+                      <el-input v-model="row.name" placeholder="请输入" disabled />
                     </el-form-item>
                   </div>
                 </template>
@@ -243,11 +264,11 @@
                 </template>
               </el-table-column>
 
-              <el-table-column align="center" label="操作" width="60" fixed="right">
+              <!-- <el-table-column align="center" label="操作" width="60" fixed="right">
                 <template #default="{ $index }">
                   <el-button type="primary" link @click="clickDelete($index)">删除</el-button>
                 </template>
-              </el-table-column>
+              </el-table-column> -->
             </el-table>
           </div>
         </template>
@@ -335,6 +356,7 @@ import useUserStore from "@/store/modules/user";
 import SelectMaterial from "@/components/product/SelectMaterial";
 import Sortable from "sortablejs";
 import ProductDemandPDF from "@/components/PDF/productDemandPDF.vue";
+import vueFlow from "@/views/JXSK/production/processConfig/vueFlow.vue";
 
 const userInfo = useUserStore();
 const userId = computed(() => userInfo.user.userId);
@@ -588,6 +610,11 @@ const formConfig = reactive([
 const formConfigOne = reactive([
   {
     type: "slot",
+    slotName: "lineSlot",
+    label: "",
+  },
+  {
+    type: "slot",
     slotName: "slot",
     label: "",
   },
@@ -739,7 +766,14 @@ const submitForm = (flag) => {
     }
   });
 };
+const vueFlowDom = ref(null);
+
 const submitApi = (type) => {
+  const data = vueFlowDom.value.submitAll();
+  if (!data) {
+    return;
+  }
+  formData.data.customizedNodeObject = data.nodeObject;
   formData.dataOne.fileList = formData.dataOne.fileList.map((item) => {
     return {
       id: item.raw.id,
@@ -772,6 +806,7 @@ const submitApi = (type) => {
     (err) => (loadingOne.value = false)
   );
 };
+const nodeObject = ref("");
 const submitFormOne = (type) => {
   byformOne.value.handleSubmit((valid) => {
     // for (
@@ -850,39 +885,42 @@ const initSort = () => {
 const isDetailOne = ref(false);
 const getDtlOne = (row, flag) => {
   isDetailOne.value = flag;
-  formOptionOne.disabled = flag;
+  // formOptionOne.disabled = flag;
+  formOptionOne.disabled = false;
+
   modalType.value = "edit";
   proxy
-    .post("/workOrderProductionProcesses/list", { workOrderId: row.id })
+    .post("/workOrderProductionProcesses/detail", { workOrderId: row.id })
     .then((res) => {
       dialogVisibleOne.value = true;
-      res = res.map((x) => ({
-        ...x,
-        fileList: x.fileName
-          ? [
-              {
-                fileName: x.fileName,
-                id: x.oldId,
-              },
-            ]
-          : [],
-        fileListCopy: x.fileName
-          ? [
-              {
-                fileName: x.fileName,
-                id: x.oldId,
-              },
-            ]
-          : [],
-      }));
+      res.workOrderProductionProcessesList =
+        res.workOrderProductionProcessesList.map((x) => ({
+          ...x,
+          fileList: x.fileName
+            ? [
+                {
+                  fileName: x.fileName,
+                  id: x.oldId,
+                },
+              ]
+            : [],
+          fileListCopy: x.fileName
+            ? [
+                {
+                  fileName: x.fileName,
+                  id: x.oldId,
+                },
+              ]
+            : [],
+        }));
       formData.dataOne = {
         workOrderId: row.id,
-        workOrderProductionProcessesList: res,
+        workOrderProductionProcessesList: res.workOrderProductionProcessesList,
         fileList: [],
       };
-      nextTick(() => {
-        initSort();
-      });
+      // nextTick(() => {
+      //   initSort();
+      // });
       proxy
         .post("/fileInfo/getList", { businessIdList: [row.id], fileType: 1 })
         .then((fileObj) => {
@@ -982,13 +1020,44 @@ const handleSelect = (row) => {
   });
 };
 
-const clickAdd = () => {
-  formData.dataOne.workOrderProductionProcessesList.push({
+const clickAdd = ({ time, name, nodeId }) => {
+  let obj = {
     fileList: [],
     fileListCopy: [],
     name: "",
     remarks: "",
-  });
+  };
+  if (time) {
+    obj.productionId = time;
+  }
+  if (name) {
+    obj.name = name;
+  }
+  if (nodeId) {
+    obj.nodeId = nodeId;
+  }
+  // type 1为自定义工序 0为固定工序
+  obj.type = time ? "1" : "0";
+  formData.dataOne.workOrderProductionProcessesList.push(obj);
+};
+
+const removeRow = ({ id, type }) => {
+  let key = type == "1" ? "productionId" : "nodeId";
+  const index = formData.dataOne.workOrderProductionProcessesList.findIndex(
+    (x) => x[key] == id
+  );
+  if (index > -1) {
+    formData.dataOne.workOrderProductionProcessesList.splice(index, 1);
+  }
+};
+
+const changeName = ({ productionId, name }) => {
+  const index = formData.dataOne.workOrderProductionProcessesList.findIndex(
+    (x) => x.productionId == productionId
+  );
+  if (index > -1) {
+    formData.dataOne.workOrderProductionProcessesList[index].name = name;
+  }
 };
 const clickDelete = (index) => {
   formData.dataOne.workOrderProductionProcessesList.splice(index, 1);
@@ -1182,4 +1251,28 @@ const handleSelectRow = (row) => {
   border: 1px solid #c4c4c4;
   color: #c4c4c4;
 }
+
+.processChart {
+  border: 1px solid #ccc;
+  padding: 20px;
+  display: flex;
+  justify-content: space-between;
+  position: relative;
+  .from {
+    width: 400px;
+    background: #fff;
+    border-radius: 5px;
+    padding: 20px;
+  }
+  .content {
+    width: calc(100% - 420px);
+    border-radius: 5px;
+    padding: 20px;
+    background: #fff;
+  }
+}
+.chart-warp {
+  width: 100%;
+  height: calc(100vh - 280px);
+}
 </style>

+ 58 - 60
src/views/process/processConfig/handleBtn.vue

@@ -1,69 +1,67 @@
 <template>
-    <div class="handle-btn">
-        <div class="icon-box">
-            <div class="icon">
-                <i class="iconfont icon-icomx_banli"></i>
-            </div>
-            <div class="icon-text">办理</div>
-        </div>
-        <div class="title">{{title || '待配置'}}</div>
+  <div class="handle-btn">
+    <div class="icon-box">
+      <div class="icon">
+        <i class="iconfont icon-icomx_banli"></i>
+      </div>
+      <div class="icon-text">办理</div>
     </div>
+    <div class="title">{{title || '待配置'}}</div>
+  </div>
 </template>
 <script setup>
-    import { defineProps, inject, ref } from 'vue'
-    
-    let title = ref('')
-    let getNode = inject('getNode')
-    const node = getNode()
-    node.on('change:data', ({current}) => {
-        title.value = current.title
-    })
-    
+import { defineProps, inject, ref } from "vue";
 
+let title = ref("");
+let getNode = inject("getNode");
+const node = getNode();
+node.on("change:data", ({ current }) => {
+  title.value = current.title;
+});
 </script>
 <style lang="scss">
-    .handle-btn{
-        height: 90px;
-        width: 150px;
-        background: #fff;
-        text-align: center;
-        box-shadow: 0px 2px 10px 1px rgba(51,51,51,0.1);
-        border-radius: 10px 10px 10px 10px;
-        padding: 10px;
-        .title {
-            width: 100%;
-            height: 40px;
-            line-height: 40px;
-            padding: 0 20px;
-            text-align: left;
-            background: #eee;
-            border-radius: 10px;
-            margin-top: 10px;
-            //文字一行多余省略
-            white-space: nowrap;
-            overflow: hidden;
-            text-overflow: ellipsis;
-        }
-        .icon-box{
-            display: flex;
-            height: 20px;
-            line-height: 20px;
-            color: #333;
-            font-size: 14px;
-            .icon{
-                height: 20px;
-                width: 20px;
-                border-radius: 10px;
-                background: #FF9315;
-                color: #fff;
-                i{
-                    color: #fff;
-                    font-size: 12px;
-                }
-            }
-            .icon-text{
-                margin-left:10px;
-            }
-        }
+.handle-btn {
+  height: 90px;
+  width: 150px;
+  background: #fff;
+  text-align: center;
+  box-shadow: 0px 2px 10px 1px rgba(51, 51, 51, 0.1);
+  border-radius: 10px 10px 10px 10px;
+  padding: 10px;
+  .title {
+    width: 100%;
+    height: 40px;
+    line-height: 40px;
+    padding: 0 20px;
+    text-align: left;
+    background: #eee;
+    border-radius: 10px;
+    margin-top: 10px;
+    //文字一行多余省略
+    white-space: nowrap;
+    overflow: hidden;
+    text-overflow: ellipsis;
+  }
+  .icon-box {
+    display: flex;
+    height: 20px;
+    line-height: 20px;
+    color: #333;
+    font-size: 14px;
+    .icon {
+      height: 20px;
+      width: 20px;
+      border-radius: 10px;
+      background: #ff9315;
+      color: #fff;
+      i {
+        color: #fff;
+        font-size: 12px;
+      }
     }
+    .icon-text {
+      margin-left: 10px;
+    }
+  }
+}
 </style>

+ 4 - 3
src/views/production/project/technology/index.vue

@@ -56,7 +56,7 @@
             <div class="content">
               <div class="commons-title">工艺路线</div>
               <div class="chart-warp">
-                <vueFlow :dataId="dataId" ref="vueFlowDom"></vueFlow>
+                <vueFlow :nodeObject="nodeObject" ref="vueFlowDom"></vueFlow>
               </div>
             </div>
           </div>
@@ -326,6 +326,7 @@ const openModal = () => {
   productList.value = [];
 };
 const vueFlowDom = ref(null);
+const nodeObject = ref("");
 const submitForm = () => {
   byform.value.handleSubmit((valid) => {
     // if (!selectLine.value.length > 0)
@@ -344,7 +345,6 @@ const submitForm = () => {
       return;
     }
     formData.data.nodeObject = data.nodeObject;
-    formData.data.lineObject = data.lineObject;
     submitLoading.value = true;
     // formData.data.processRouteList = selectLine.value; //选择的工序数据
     formData.data.productList = productList.value.map((x) => ({
@@ -372,8 +372,9 @@ const submitForm = () => {
 const getDtl = (row) => {
   modalType.value = "edit";
   proxy.post("/technology/detail", { id: row.id }).then((res) => {
+    nodeObject.value = res.nodeObject;
     productList.value = res.applicableProductsList;
-    selectLine.value = res.processRouteList.map((x) => x.id);
+    // selectLine.value = res.processRouteList.map((x) => x.id);
     formData.data = res;
     dialogVisible.value = true;
   });