pipleline.svg 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <svg width="800" height="800" xmlns="http://www.w3.org/2000/svg" style="background-color:white;">
  2. <!-- 开始节点:绿色圆形 -->
  3. <circle cx="100" cy="50" r="20" fill="green" />
  4. <text x="90" y="55">开始</text>
  5. <!-- 申请换货:矩形 -->
  6. <rect x="100" y="100" width="120" height="60" fill="white" stroke="black" />
  7. <text x="110" y="130">申请换货</text>
  8. <line x1="100" y1="70" x2="100" y2="100" stroke="black" />
  9. <!-- 确定订单:矩形 -->
  10. <rect x="100" y="200" width="120" height="60" fill="white" stroke="black" />
  11. <text x="110" y="230">确定订单</text>
  12. <line x1="100" y1="160" x2="100" y2="200" stroke="black" />
  13. <!-- 判断是否满足换货条件:菱形 -->
  14. <polygon points="100 300, 160 330, 100 360, 40 330" fill="white" stroke="black" />
  15. <text x="80" y="330">是否满足换货条件</text>
  16. <line x1="100" y1="260" x2="100" y2="300" stroke="black" />
  17. <!-- 是分支 -->
  18. <line x1="100" y1="330" x2="100" y2="390" stroke="black" />
  19. <rect x="100" y="400" width="120" height="60" fill="white" stroke="black" />
  20. <text x="110" y="430">固定话术</text>
  21. <!-- 获取退货地址及订单状态:矩形 -->
  22. <rect x="100" y="500" width="180" height="60" fill="white" stroke="black" />
  23. <text x="110" y="530">获取退货地址及订单状态(审核可退/审核不可退)</text>
  24. <line x1="100" y1="460" x2="100" y2="500" stroke="black" />
  25. <!-- 判断是否可退:菱形 -->
  26. <polygon points="100 600, 160 630, 100 660, 40 630" fill="white" stroke="black" />
  27. <text x="80" y="630">判断是否可退</text>
  28. <line x1="100" y1="560" x2="100" y2="600" stroke="black" />
  29. <!-- 可退分支 -->
  30. <line x1="100" y1="630" x2="100" y2="690" stroke="black" />
  31. <rect x="100" y="700" width="120" height="60" fill="white" stroke="black" />
  32. <text x="110" y="730">固定话术</text>
  33. <!-- 发货:矩形 -->
  34. <rect x="250" y="700" width="120" height="60" fill="white" stroke="black" />
  35. <text x="260" y="730">发货</text>
  36. <line x1="160" y1="730" x2="250" y2="730" stroke="black" />
  37. <!-- 确定订单(获取订单状态):矩形 -->
  38. <rect x="250" y="800" width="180" height="60" fill="white" stroke="black" />
  39. <text x="260" y="830">确定订单(获取订单状态:已发货/未发货)</text>
  40. <line x1="250" y1="760" x2="250" y2="800" stroke="black" />
  41. <!-- 判断是否发货:菱形 -->
  42. <polygon points="250 900, 310 930, 250 960, 190 930" fill="white" stroke="black" />
  43. <text x="230" y="930">判断是否发货</text>
  44. <line x1="250" y1="860" x2="250" y2="900" stroke="black" />
  45. <!-- 已发货分支 -->
  46. <line x1="250" y1="930" x2="250" y2="990" stroke="black" />
  47. <rect x="250" y="1000" width="120" height="60" fill="white" stroke="black" />
  48. <text x="260" y="1030">固定话术</text>
  49. <!-- 否分支(不满足换货条件) -->
  50. <line x1="40" y1="330" x2="40" y2="390" stroke="black" />
  51. <rect x="40" y="400" width="120" height="60" fill="white" stroke="black" />
  52. <text x="50" y="430">固定话术回柜</text>
  53. <!-- 否分支(不可退) -->
  54. <line x1="40" y1="630" x2="40" y2="690" stroke="black" />
  55. <rect x="40" y="700" width="120" height="60" fill="white" stroke="black" />
  56. <text x="50" y="730">固定话术回柜</text>
  57. <!-- 否分支(未发货) -->
  58. <line x1="190" y1="930" x2="190" y2="990" stroke="black" />
  59. <rect x="190" y="1000" width="120" height="60" fill="white" stroke="black" />
  60. <text x="200" y="1030">固定话术</text>
  61. </svg>