代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="snap.svg.js"></script>
<script src="diagram.js"></script>
</head>
<body>
<style>
#svg {
width : 490px;
height : 290px;
border : 1px solid #000000;
}
</style>
<svg id="svg"></svg>
<script>
var cx = 100;
var data = {
"nodes": [
{
"type": "start",
"cx": cx,
"y": 20
},
{
"type" : "decision",
"id" : "d1",
"name" : "请假天数是否大于3",
"cx" : cx,
"y" : 80,
"w" : 180
},
{
"type": "task",
"id": "task1",
"name": "运维人员审批",
"highlight": true,
"cx": cx,
"y": 170,
"w": 140
},
{
"type": "task",
"id": "devtask",
"name": "开发人员审批",
"cx": cx + 200,
"y": 170,
"w": 140
},
{
"type": "end",
"cx": cx,
"y": 220
}
],
"lines": [
{
"from": "start",
"to": "d1"
},
{
"from": "d1",
"to": "task1",
"text" : "是"
},
{
"from": "task1",
"to": "end"
},
{
"from": "d1",
"to": "devtask",
"text" : "否",
"direction" : "x"
},
{
"from": "devtask",
"to": "end",
"direction" : "y"
}
]
};
var flow = new Flow("svg", data);
flow.render();
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。