9eda495f6161383dc96f4e830a4527760415a5d7f8dfc7f78b468fb90b36ff17.json 23 KB

1
  1. {"ast":null,"code":"import \"core-js/modules/es.array.filter.js\";\nimport \"core-js/modules/es.array.find.js\";\nimport \"core-js/modules/es.array.for-each.js\";\nimport \"core-js/modules/es.array.push.js\";\nimport \"core-js/modules/es.function.name.js\";\nimport \"core-js/modules/es.iterator.constructor.js\";\nimport \"core-js/modules/es.iterator.find.js\";\nimport \"core-js/modules/es.iterator.for-each.js\";\nimport \"core-js/modules/es.object.to-string.js\";\nimport \"core-js/modules/es.string.starts-with.js\";\nimport \"core-js/modules/web.dom-collections.for-each.js\";\nimport \"core-js/modules/web.timers.js\";\nimport jsPlumb from 'jsplumb';\nexport default {\n name: 'ProcessFlow',\n data: function data() {\n return {\n processTypes: {\n employee: {\n title: '员工入职业务流程',\n description: '本流程规范了新员工从招聘到入职的完整过程,确保人才招聘和入职流程的规范化和标准化。',\n status: '正常运行',\n statusType: 'success',\n totalSteps: 7,\n completedSteps: 4,\n avgDuration: '15天'\n }\n },\n nodes: [{\n id: 'start',\n type: 'start',\n label: '开始',\n x: 350,\n y: 50,\n url: '/process/start'\n }, {\n id: 'interview',\n type: 'condition',\n label: '面试',\n x: 350,\n y: 150,\n url: '/interview'\n }, {\n id: 'pass',\n type: 'process',\n label: '发录用通知书',\n x: 550,\n y: 150,\n url: '/offer'\n }, {\n id: 'prepare',\n type: 'process',\n label: '准备入职材料',\n x: 550,\n y: 250,\n url: '/prepare'\n }, {\n id: 'verify',\n type: 'condition',\n label: '材料核实',\n x: 550,\n y: 350,\n url: '/verify'\n }, {\n id: 'onboard',\n type: 'process',\n label: '办理入职',\n x: 550,\n y: 450,\n url: '/onboard'\n }, {\n id: 'reject',\n type: 'process',\n label: '发送拒绝通知',\n x: 150,\n y: 250,\n url: '/reject'\n }, {\n id: 'archive',\n type: 'process',\n label: '归档简历',\n x: 150,\n y: 350,\n url: '/archive'\n }, {\n id: 'end',\n type: 'end',\n label: '结束',\n x: 350,\n y: 550,\n url: '/process/end'\n }],\n connections: [{\n source: 'start',\n target: 'interview'\n }, {\n source: 'interview',\n target: 'pass',\n label: '通过'\n }, {\n source: 'interview',\n target: 'reject',\n label: '不通过'\n }, {\n source: 'pass',\n target: 'prepare'\n }, {\n source: 'prepare',\n target: 'verify'\n }, {\n source: 'verify',\n target: 'onboard',\n label: '完整'\n }, {\n source: 'verify',\n target: 'prepare',\n label: '需补充'\n }, {\n source: 'reject',\n target: 'archive'\n }, {\n source: 'onboard',\n target: 'end'\n }, {\n source: 'archive',\n target: 'end'\n }],\n jsPlumbInstance: null\n };\n },\n computed: {\n currentProcess: function currentProcess() {\n var processType = this.$route.params.type || 'employee';\n return this.processTypes[processType];\n }\n },\n methods: {\n handleNodeClick: function handleNodeClick(nodeId) {\n var _this = this;\n var node = this.nodes.find(function (n) {\n return n.id === nodeId;\n });\n if (node && node.url) {\n if (node.url.startsWith('http')) {\n window.open(node.url, '_blank');\n } else {\n this.$router.push(node.url)[\"catch\"](function (err) {\n if (err.name !== 'NavigationDuplicated') {\n _this.$message({\n type: 'info',\n message: \"\\u6B63\\u5728\\u8DF3\\u8F6C\\u5230\".concat(node.label, \"\\u9875\\u9762...\")\n });\n }\n });\n }\n }\n },\n nodeStyle: function nodeStyle(node) {\n return {\n left: node.x + 'px',\n top: node.y + 'px'\n };\n },\n initJsPlumb: function initJsPlumb() {\n var _this2 = this;\n this.jsPlumbInstance = jsPlumb.jsPlumb.getInstance({\n Container: this.$refs.processFlow,\n Connector: ['Flowchart', {\n cornerRadius: 8,\n stub: 30,\n midpoint: 0.7\n }],\n Endpoint: ['Dot', {\n radius: 6\n }],\n Anchor: [['Left', 'Right', 'Top'], ['Left', 'Right', 'Bottom']],\n PaintStyle: {\n strokeWidth: 3,\n stroke: '#409EFF',\n outlineWidth: 1,\n outlineStroke: '#ddd'\n },\n EndpointStyle: {\n fill: '#409EFF',\n stroke: '#fff',\n strokeWidth: 2,\n radius: 5\n },\n HoverPaintStyle: {\n stroke: '#67C23A',\n strokeWidth: 3\n }\n });\n\n // 为每个节点添加端点\n this.nodes.forEach(function (node) {\n var element = document.getElementById(node.id);\n if (element) {\n _this2.jsPlumbInstance.makeSource(element, {\n filter: '.flow-node',\n anchor: ['Left', 'Right', 'Top'],\n maxConnections: -1\n });\n _this2.jsPlumbInstance.makeTarget(element, {\n filter: '.flow-node',\n anchor: ['Left', 'Right', 'Bottom'],\n maxConnections: -1\n });\n }\n });\n\n // 添加连接\n this.connections.forEach(function (conn) {\n var connection = _this2.jsPlumbInstance.connect({\n source: conn.source,\n target: conn.target,\n detachable: false,\n overlays: [['Arrow', {\n location: 1\n }], conn.label ? ['Label', {\n label: conn.label,\n location: 0.5,\n cssClass: 'connection-label',\n events: {\n click: function click() {\n _this2.$message.info(conn.label || '流程连接');\n }\n }\n }] : null].filter(Boolean)\n });\n if (conn.source === 'verify' && conn.target === 'prepare') {\n connection.setConnector(['Flowchart', {\n stub: [30, 30],\n cornerRadius: 5,\n alwaysRespectStubs: true\n }]);\n }\n });\n }\n },\n mounted: function mounted() {\n var _this3 = this;\n // 等待 DOM 完全渲染后再初始化 jsPlumb\n setTimeout(function () {\n _this3.initJsPlumb();\n }, 500);\n },\n beforeDestroy: function beforeDestroy() {\n if (this.jsPlumbInstance) {\n this.jsPlumbInstance.destroy();\n }\n }\n};","map":{"version":3,"names":["jsPlumb","name","data","processTypes","employee","title","description","status","statusType","totalSteps","completedSteps","avgDuration","nodes","id","type","label","x","y","url","connections","source","target","jsPlumbInstance","computed","currentProcess","processType","$route","params","methods","handleNodeClick","nodeId","_this","node","find","n","startsWith","window","open","$router","push","err","$message","message","concat","nodeStyle","left","top","initJsPlumb","_this2","getInstance","Container","$refs","processFlow","Connector","cornerRadius","stub","midpoint","Endpoint","radius","Anchor","PaintStyle","strokeWidth","stroke","outlineWidth","outlineStroke","EndpointStyle","fill","HoverPaintStyle","forEach","element","document","getElementById","makeSource","filter","anchor","maxConnections","makeTarget","conn","connection","connect","detachable","overlays","location","cssClass","events","click","info","Boolean","setConnector","alwaysRespectStubs","mounted","_this3","setTimeout","beforeDestroy","destroy"],"sources":["src/views/EmployeeProcess.vue"],"sourcesContent":["<template>\n <div class=\"process-container\">\n <!-- 添加业务介绍区域 -->\n <el-card class=\"process-intro\">\n <div class=\"intro-header\">\n <h2>{{ currentProcess.title }}</h2>\n <el-tag size=\"medium\" :type=\"currentProcess.statusType\">{{ currentProcess.status }}</el-tag>\n </div>\n <div class=\"intro-content\">\n <div class=\"intro-description\">\n <p>{{ currentProcess.description }}</p>\n </div>\n <div class=\"intro-stats\">\n <div class=\"stat-item\">\n <div class=\"stat-value\">{{ currentProcess.totalSteps }}</div>\n <div class=\"stat-label\">总步骤</div>\n </div>\n <div class=\"stat-item\">\n <div class=\"stat-value\">{{ currentProcess.completedSteps }}</div>\n <div class=\"stat-label\">已完成</div>\n </div>\n <div class=\"stat-item\">\n <div class=\"stat-value\">{{ currentProcess.avgDuration }}</div>\n <div class=\"stat-label\">平均耗时</div>\n </div>\n </div>\n </div>\n </el-card>\n\n <div class=\"process-flow\" ref=\"processFlow\">\n <div \n v-for=\"node in nodes\" \n :key=\"node.id\" \n :id=\"node.id\" \n :class=\"['flow-node', node.type]\" \n :style=\"nodeStyle(node)\"\n @click=\"handleNodeClick(node.id)\"\n >\n <span class=\"node-label\">{{ node.label }}</span>\n </div>\n </div>\n </div>\n</template>\n\n<script>\nimport jsPlumb from 'jsplumb'\n\nexport default {\n name: 'ProcessFlow',\n data() {\n return {\n processTypes: {\n employee: {\n title: '员工入职业务流程',\n description: '本流程规范了新员工从招聘到入职的完整过程,确保人才招聘和入职流程的规范化和标准化。',\n status: '正常运行',\n statusType: 'success',\n totalSteps: 7,\n completedSteps: 4,\n avgDuration: '15天'\n }\n },\n nodes: [\n { \n id: 'start', \n type: 'start', \n label: '开始', \n x: 350, \n y: 50,\n url: '/process/start'\n },\n { \n id: 'interview', \n type: 'condition', \n label: '面试', \n x: 350, \n y: 150,\n url: '/interview'\n },\n { \n id: 'pass', \n type: 'process', \n label: '发录用通知书', \n x: 550, \n y: 150,\n url: '/offer'\n },\n { \n id: 'prepare', \n type: 'process', \n label: '准备入职材料', \n x: 550, \n y: 250,\n url: '/prepare'\n },\n { \n id: 'verify', \n type: 'condition', \n label: '材料核实', \n x: 550, \n y: 350,\n url: '/verify'\n },\n { \n id: 'onboard', \n type: 'process', \n label: '办理入职', \n x: 550, \n y: 450,\n url: '/onboard'\n },\n { \n id: 'reject', \n type: 'process', \n label: '发送拒绝通知', \n x: 150, \n y: 250,\n url: '/reject'\n },\n { \n id: 'archive', \n type: 'process', \n label: '归档简历', \n x: 150, \n y: 350,\n url: '/archive'\n },\n { \n id: 'end', \n type: 'end', \n label: '结束', \n x: 350, \n y: 550,\n url: '/process/end'\n }\n ],\n connections: [\n { source: 'start', target: 'interview' },\n { source: 'interview', target: 'pass', label: '通过' },\n { source: 'interview', target: 'reject', label: '不通过' },\n { source: 'pass', target: 'prepare' },\n { source: 'prepare', target: 'verify' },\n { source: 'verify', target: 'onboard', label: '完整' },\n { source: 'verify', target: 'prepare', label: '需补充' },\n { source: 'reject', target: 'archive' },\n { source: 'onboard', target: 'end' },\n { source: 'archive', target: 'end' }\n ],\n jsPlumbInstance: null\n }\n },\n computed: {\n currentProcess() {\n const processType = this.$route.params.type || 'employee'\n return this.processTypes[processType]\n }\n },\n methods: {\n handleNodeClick(nodeId) {\n const node = this.nodes.find(n => n.id === nodeId)\n if (node && node.url) {\n if (node.url.startsWith('http')) {\n window.open(node.url, '_blank')\n } else {\n this.$router.push(node.url).catch(err => {\n if (err.name !== 'NavigationDuplicated') {\n this.$message({\n type: 'info',\n message: `正在跳转到${node.label}页面...`\n })\n }\n })\n }\n }\n },\n nodeStyle(node) {\n return {\n left: node.x + 'px',\n top: node.y + 'px'\n }\n },\n initJsPlumb() {\n this.jsPlumbInstance = jsPlumb.jsPlumb.getInstance({\n Container: this.$refs.processFlow,\n Connector: ['Flowchart', { cornerRadius: 8, stub: 30, midpoint: 0.7 }],\n Endpoint: ['Dot', { radius: 6 }],\n Anchor: [\n ['Left', 'Right', 'Top'],\n ['Left', 'Right', 'Bottom']\n ],\n PaintStyle: {\n strokeWidth: 3,\n stroke: '#409EFF',\n outlineWidth: 1,\n outlineStroke: '#ddd'\n },\n EndpointStyle: { \n fill: '#409EFF',\n stroke: '#fff',\n strokeWidth: 2,\n radius: 5\n },\n HoverPaintStyle: {\n stroke: '#67C23A',\n strokeWidth: 3\n }\n })\n\n // 为每个节点添加端点\n this.nodes.forEach(node => {\n const element = document.getElementById(node.id)\n if (element) {\n this.jsPlumbInstance.makeSource(element, {\n filter: '.flow-node',\n anchor: ['Left', 'Right', 'Top'],\n maxConnections: -1\n })\n this.jsPlumbInstance.makeTarget(element, {\n filter: '.flow-node',\n anchor: ['Left', 'Right', 'Bottom'],\n maxConnections: -1\n })\n }\n })\n\n // 添加连接\n this.connections.forEach(conn => {\n const connection = this.jsPlumbInstance.connect({\n source: conn.source,\n target: conn.target,\n detachable: false,\n overlays: [\n ['Arrow', { location: 1 }],\n conn.label ? ['Label', { \n label: conn.label, \n location: 0.5, \n cssClass: 'connection-label',\n events: {\n click: () => {\n this.$message.info(conn.label || '流程连接')\n }\n }\n }] : null\n ].filter(Boolean)\n })\n\n if (conn.source === 'verify' && conn.target === 'prepare') {\n connection.setConnector(['Flowchart', { \n stub: [30, 30],\n cornerRadius: 5,\n alwaysRespectStubs: true\n }])\n }\n })\n }\n },\n mounted() {\n // 等待 DOM 完全渲染后再初始化 jsPlumb\n setTimeout(() => {\n this.initJsPlumb()\n }, 500)\n },\n beforeDestroy() {\n if (this.jsPlumbInstance) {\n this.jsPlumbInstance.destroy()\n }\n }\n}\n</script>\n\n<style scoped>\n.process-container {\n padding: 20px;\n background: #f8f9fa;\n min-height: 100vh;\n}\n\n.process-intro {\n margin-bottom: 30px;\n border-radius: 12px;\n box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);\n border: none;\n}\n\n.intro-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 20px;\n padding-bottom: 15px;\n border-bottom: 1px solid #ebeef5;\n}\n\n.intro-header h2 {\n margin: 0;\n font-size: 22px;\n color: #2c3e50;\n font-weight: 600;\n}\n\n.intro-content {\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n}\n\n.intro-description {\n flex: 1;\n padding-right: 40px;\n}\n\n.intro-description p {\n margin: 0;\n color: #5c6b77;\n line-height: 1.8;\n font-size: 15px;\n}\n\n.intro-stats {\n display: flex;\n gap: 40px;\n padding: 20px;\n background: #f8fafc;\n border-radius: 8px;\n}\n\n.stat-item {\n text-align: center;\n padding: 0 20px;\n position: relative;\n}\n\n.stat-item:not(:last-child)::after {\n content: '';\n position: absolute;\n right: -20px;\n top: 50%;\n transform: translateY(-50%);\n height: 70%;\n width: 1px;\n background: #e0e6ed;\n}\n\n.stat-value {\n font-size: 28px;\n font-weight: 600;\n color: #409EFF;\n margin-bottom: 8px;\n line-height: 1;\n}\n\n.stat-label {\n font-size: 14px;\n color: #8492a6;\n}\n\n.process-flow {\n margin: 40px 0;\n padding: 40px;\n background-color: #fff;\n border-radius: 16px;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);\n position: relative;\n height: 600px;\n min-width: 800px;\n overflow: visible;\n}\n\n/* 流程图节点样式 */\n.flow-node {\n position: absolute;\n min-width: 120px;\n padding: 15px 25px;\n text-align: center;\n background: #fff;\n border: 2px solid #409EFF;\n border-radius: 8px;\n cursor: pointer;\n transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n z-index: 10;\n box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);\n}\n\n.flow-node:hover {\n box-shadow: 0 8px 16px rgba(64, 158, 255, 0.2);\n transform: translateY(-4px);\n}\n\n.flow-node.start,\n.flow-node.end {\n background: linear-gradient(135deg, #409EFF, #3a8ee6);\n color: #fff;\n border-radius: 25px;\n min-width: 100px;\n border: none;\n font-weight: 500;\n box-shadow: 0 4px 15px rgba(64, 158, 255, 0.3);\n}\n\n.flow-node.condition {\n border-color: #E6A23C;\n background: #fff;\n color: #E6A23C;\n transform: rotate(45deg);\n width: 90px;\n height: 90px;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 0;\n box-shadow: 0 4px 15px rgba(230, 162, 60, 0.2);\n}\n\n.flow-node.condition:hover {\n box-shadow: 0 8px 20px rgba(230, 162, 60, 0.3);\n transform: rotate(45deg) translateY(-4px);\n}\n\n.flow-node.condition .node-label {\n transform: rotate(-45deg);\n white-space: nowrap;\n font-weight: 500;\n font-size: 14px;\n}\n\n.flow-node.process {\n border-color: #409EFF;\n color: #2c3e50;\n background: linear-gradient(to bottom, #fff, #f8fafc);\n}\n\n.node-label {\n font-size: 14px;\n font-weight: 500;\n}\n\n/* 连接线标签样式 */\n:deep(.connection-label) {\n background: #fff;\n padding: 4px 8px;\n border-radius: 12px;\n font-size: 12px;\n color: #5c6b77;\n border: 1px solid #e0e6ed;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);\n z-index: 5;\n font-weight: 500;\n}\n\n/* jsPlumb 连接点样式 */\n:deep(.jtk-endpoint) {\n z-index: 15;\n transition: all 0.3s ease;\n}\n\n:deep(.jtk-endpoint:hover) {\n transform: scale(1.2);\n}\n\n:deep(.jtk-connector) {\n z-index: 4;\n filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));\n}\n\n:deep(.jtk-overlay) {\n z-index: 6;\n}\n\n/* 响应式样式 */\n@media screen and (max-width: 768px) {\n .process-flow {\n padding: 20px;\n margin: 20px 0;\n }\n\n .intro-content {\n flex-direction: column;\n }\n\n .intro-description {\n padding-right: 0;\n margin-bottom: 20px;\n }\n\n .intro-stats {\n flex-wrap: wrap;\n gap: 20px;\n padding: 15px;\n }\n\n .stat-item {\n padding: 0 15px;\n }\n\n .stat-item:not(:last-child)::after {\n display: none;\n }\n\n .stat-value {\n font-size: 24px;\n }\n}\n</style> "],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}