business-flow.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>绿水青山· 三端架构与内部 SOP</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css">
  9. <style>
  10. body {
  11. background: #e8f0ec;
  12. font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  13. }
  14. .glass {
  15. background: rgba(255, 255, 255, 0.9);
  16. border: 1px solid rgba(164, 216, 152, 0.4);
  17. box-shadow: 0 14px 40px -14px rgba(54, 143, 111, 0.35);
  18. }
  19. /* 三端主题色 */
  20. .lane-sales { --c: #368f6f; --c2: #4ba98a; --soft: rgba(164,216,152,0.16); --line: rgba(164,216,152,0.45); }
  21. .lane-dispatch { --c: #2563eb; --c2: #60a5fa; --soft: rgba(37,99,235,0.07); --line: rgba(37,99,235,0.28); }
  22. .lane-construct { --c: #b7791f; --c2: #d9a441; --soft: rgba(251,211,141,0.20); --line: rgba(251,211,141,0.6); }
  23. .lane {
  24. background: var(--soft);
  25. border: 1.5px solid var(--line);
  26. }
  27. .lane-head {
  28. background: linear-gradient(135deg, var(--c) 0%, var(--c2) 100%);
  29. }
  30. /* 内部 SOP 节点与小管道 */
  31. .sop-node {
  32. background: #ffffff;
  33. border: 1px solid var(--line);
  34. box-shadow: 0 6px 16px -8px var(--c);
  35. }
  36. .sop-node .dot { background: var(--c); }
  37. .pipe {
  38. width: 2px;
  39. background: repeating-linear-gradient(180deg, var(--c) 0 4px, transparent 4px 8px);
  40. opacity: .55;
  41. }
  42. .pipe-arrow {
  43. width: 0; height: 0;
  44. border-left: 5px solid transparent;
  45. border-right: 5px solid transparent;
  46. border-top: 7px solid var(--c);
  47. opacity: .8;
  48. }
  49. /* 跨端箭头 */
  50. .x-arrow {
  51. display: flex; flex-direction: column; align-items: center;
  52. }
  53. .x-line { width: 2px; flex: 1; background: linear-gradient(180deg, #94a3b8, #64748b); }
  54. .x-tri {
  55. width: 0; height: 0;
  56. border-left: 6px solid transparent;
  57. border-right: 6px solid transparent;
  58. border-top: 8px solid #64748b;
  59. }
  60. .x-tag {
  61. font-size: 10px; color: #475569;
  62. background: #ffffff;
  63. border: 1px solid #cbd5e1;
  64. border-radius: 999px;
  65. padding: 2px 8px;
  66. white-space: nowrap;
  67. }
  68. @media (min-width: 1024px) {
  69. .x-arrow { flex-direction: row; }
  70. .x-line { height: 2px; width: auto; }
  71. .x-tri {
  72. border-top: 6px solid transparent;
  73. border-bottom: 6px solid transparent;
  74. border-left: 8px solid #64748b;
  75. border-right: none;
  76. }
  77. }
  78. </style>
  79. </head>
  80. <body class="min-h-screen py-8 px-4">
  81. <div class="max-w-6xl mx-auto">
  82. <!-- 标题 -->
  83. <header class="text-center mb-6">
  84. <h1 class="text-2xl font-extrabold text-gray-800">绿水青山 · 三端协同架构</h1>
  85. <p class="text-sm text-gray-500 mt-1">外围三端结构固定 · 内部 SOP 可按需调整</p>
  86. </header>
  87. <!-- 三端泳道 -->
  88. <div class="grid grid-cols-1 lg:grid-cols-[1fr_auto_1fr_auto_1fr] gap-3 items-stretch">
  89. <!-- ============ 销售端 ============ -->
  90. <section class="lane lane-sales rounded-3xl overflow-hidden flex flex-col">
  91. <div class="lane-head px-4 py-3 flex items-center text-white">
  92. <div class="w-9 h-9 rounded-xl bg-white/20 flex items-center justify-center mr-2.5">
  93. <i class="fa fa-briefcase"></i>
  94. </div>
  95. <div>
  96. <h2 class="text-base font-bold leading-tight">销售端</h2>
  97. <p class="text-[11px] text-white/75">客户 · 项目 · 合同 · 回款</p>
  98. </div>
  99. </div>
  100. <div class="p-4 flex flex-col items-center flex-1">
  101. <p class="text-[11px] font-semibold mb-3 self-start" style="color: var(--c);">内部 SOP(可调)</p>
  102. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  103. <div class="flex items-center">
  104. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  105. <span class="text-xs font-semibold text-gray-700">客户建档 / 跟进</span>
  106. </div>
  107. <p class="text-[10px] text-gray-400 mt-1 pl-4">客户资料、跟进记录、商机转化</p>
  108. </div>
  109. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  110. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  111. <div class="flex items-center">
  112. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  113. <span class="text-xs font-semibold text-gray-700">项目立项</span>
  114. </div>
  115. <p class="text-[10px] text-gray-400 mt-1 pl-4">项目地址、合作类型、联系人</p>
  116. </div>
  117. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  118. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  119. <div class="flex items-center">
  120. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  121. <span class="text-xs font-semibold text-gray-700">合同签署</span>
  122. </div>
  123. <p class="text-[10px] text-gray-400 mt-1 pl-4">包年 / 包月 / 单次合同管理</p>
  124. </div>
  125. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  126. <div class="sop-node w-full rounded-xl px-3 py-2.5 ring-2" style="--tw-ring-color: var(--c);">
  127. <div class="flex items-center">
  128. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  129. <span class="text-xs font-semibold text-gray-700">发布任务</span>
  130. </div>
  131. <p class="text-[10px] text-gray-400 mt-1 pl-4">故障位置、服务时间、现场照片</p>
  132. </div>
  133. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  134. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  135. <div class="flex items-center">
  136. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  137. <span class="text-xs font-semibold text-gray-700">回款跟进</span>
  138. </div>
  139. <p class="text-[10px] text-gray-400 mt-1 pl-4">履约统计、回款记录、对账</p>
  140. </div>
  141. </div>
  142. </section>
  143. <!-- 跨端箭头 1 -->
  144. <div class="x-arrow justify-center py-1 lg:px-1 lg:w-16">
  145. <span class="x-tag mb-1 lg:mb-0 lg:absolute lg:-mt-8">任务流</span>
  146. <div class="x-line h-6 lg:h-auto"></div>
  147. <div class="x-tri"></div>
  148. </div>
  149. <!-- ============ 调度端 ============ -->
  150. <section class="lane lane-dispatch rounded-3xl overflow-hidden flex flex-col">
  151. <div class="lane-head px-4 py-3 flex items-center text-white">
  152. <div class="w-9 h-9 rounded-xl bg-white/20 flex items-center justify-center mr-2.5">
  153. <i class="fa fa-calendar-check-o"></i>
  154. </div>
  155. <div>
  156. <h2 class="text-base font-bold leading-tight">调度端</h2>
  157. <p class="text-[11px] text-white/75">审核 · 派单 · 排班 · 监控</p>
  158. </div>
  159. </div>
  160. <div class="p-4 flex flex-col items-center flex-1">
  161. <p class="text-[11px] font-semibold mb-3 self-start" style="color: var(--c);">内部 SOP(可调)</p>
  162. <div class="sop-node w-full rounded-xl px-3 py-2.5 ring-2" style="--tw-ring-color: var(--c);">
  163. <div class="flex items-center">
  164. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  165. <span class="text-xs font-semibold text-gray-700">任务审核</span>
  166. </div>
  167. <p class="text-[10px] text-gray-400 mt-1 pl-4">确认可执行性 · 通过 / 驳回退回</p>
  168. </div>
  169. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  170. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  171. <div class="flex items-center">
  172. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  173. <span class="text-xs font-semibold text-gray-700">派单</span>
  174. </div>
  175. <p class="text-[10px] text-gray-400 mt-1 pl-4">指定执行班组与车辆</p>
  176. </div>
  177. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  178. <div class="sop-node w-full rounded-xl px-3 py-2.5 ring-2" style="--tw-ring-color: var(--c);">
  179. <div class="flex items-center">
  180. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  181. <span class="text-xs font-semibold text-gray-700">排班管理</span>
  182. </div>
  183. <p class="text-[10px] text-gray-400 mt-1 pl-4">月计划 / 应急排班,人员车辆编排</p>
  184. </div>
  185. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  186. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  187. <div class="flex items-center">
  188. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  189. <span class="text-xs font-semibold text-gray-700">过程监控</span>
  190. </div>
  191. <p class="text-[10px] text-gray-400 mt-1 pl-4">数据看板、进度跟踪、异常预警</p>
  192. </div>
  193. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  194. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  195. <div class="flex items-center">
  196. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  197. <span class="text-xs font-semibold text-gray-700">验收确认</span>
  198. </div>
  199. <p class="text-[10px] text-gray-400 mt-1 pl-4">核对验收方式,不合格退回返工</p>
  200. </div>
  201. </div>
  202. </section>
  203. <!-- 跨端箭头 2 -->
  204. <div class="x-arrow justify-center py-1 lg:px-1 lg:w-16">
  205. <span class="x-tag mb-1 lg:mb-0 lg:absolute lg:-mt-8">派单流</span>
  206. <div class="x-line h-6 lg:h-auto"></div>
  207. <div class="x-tri"></div>
  208. </div>
  209. <!-- ============ 施工端 ============ -->
  210. <section class="lane lane-construct rounded-3xl overflow-hidden flex flex-col">
  211. <div class="lane-head px-4 py-3 flex items-center text-white">
  212. <div class="w-9 h-9 rounded-xl bg-white/20 flex items-center justify-center mr-2.5">
  213. <i class="fa fa-wrench"></i>
  214. </div>
  215. <div>
  216. <h2 class="text-base font-bold leading-tight">施工端</h2>
  217. <p class="text-[11px] text-white/75">班组 · 车辆 · 执行 · 反馈</p>
  218. </div>
  219. </div>
  220. <div class="p-4 flex flex-col items-center flex-1">
  221. <p class="text-[11px] font-semibold mb-3 self-start" style="color: var(--c);">内部 SOP(可调)</p>
  222. <div class="sop-node w-full rounded-xl px-3 py-2.5 ring-2" style="--tw-ring-color: var(--c);">
  223. <div class="flex items-center">
  224. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  225. <span class="text-xs font-semibold text-gray-700">接收任务</span>
  226. </div>
  227. <p class="text-[10px] text-gray-400 mt-1 pl-4">每日任务 / 明日任务 / 历史任务</p>
  228. </div>
  229. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  230. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  231. <div class="flex items-center">
  232. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  233. <span class="text-xs font-semibold text-gray-700">出车前检查</span>
  234. </div>
  235. <p class="text-[10px] text-gray-400 mt-1 pl-4">车辆、设备、三大系统逐项检查</p>
  236. </div>
  237. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  238. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  239. <div class="flex items-center">
  240. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  241. <span class="text-xs font-semibold text-gray-700">现场施工</span>
  242. </div>
  243. <p class="text-[10px] text-gray-400 mt-1 pl-4">推进工单步骤,上传现场照片</p>
  244. </div>
  245. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  246. <div class="sop-node w-full rounded-xl px-3 py-2.5 ring-2" style="--tw-ring-color: var(--c);">
  247. <div class="flex items-center">
  248. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  249. <span class="text-xs font-semibold text-gray-700">完工提交</span>
  250. </div>
  251. <p class="text-[10px] text-gray-400 mt-1 pl-4">填写完工信息,等待验收</p>
  252. </div>
  253. <div class="pipe h-4"></div><div class="pipe-arrow mb-1"></div>
  254. <div class="sop-node w-full rounded-xl px-3 py-2.5">
  255. <div class="flex items-center">
  256. <span class="dot w-2 h-2 rounded-full mr-2 flex-shrink-0"></span>
  257. <span class="text-xs font-semibold text-gray-700">问题反馈</span>
  258. </div>
  259. <p class="text-[10px] text-gray-400 mt-1 pl-4">异常上报,调度协同处理</p>
  260. </div>
  261. </div>
  262. </section>
  263. </div>
  264. <!-- 底部回流说明 -->
  265. <div class="glass rounded-3xl p-4 mt-4">
  266. <div class="flex items-center mb-3">
  267. <div class="w-1 h-4 rounded mr-2" style="background: linear-gradient(180deg,#368f6f,#5ab8d0);"></div>
  268. <span class="text-sm font-bold text-gray-800">跨端协同关系</span>
  269. </div>
  270. <div class="grid grid-cols-1 md:grid-cols-3 gap-3 text-xs text-gray-600">
  271. <div class="rounded-2xl p-3 bg-white border border-gray-100">
  272. <p class="font-semibold text-gray-800 mb-1"><i class="fa fa-arrow-right mr-1" style="color:#368f6f;"></i>销售 → 调度</p>
  273. 任务发布进入调度审核池;审核驳回则退回销售补充信息
  274. </div>
  275. <div class="rounded-2xl p-3 bg-white border border-gray-100">
  276. <p class="font-semibold text-gray-800 mb-1"><i class="fa fa-arrow-right mr-1" style="color:#2563eb;"></i>调度 → 施工</p>
  277. 派单 + 排班后,班组成员在每日任务中接收工单
  278. </div>
  279. <div class="rounded-2xl p-3 bg-white border border-gray-100">
  280. <p class="font-semibold text-gray-800 mb-1"><i class="fa fa-arrow-left mr-1" style="color:#b7791f;"></i>施工 → 调度 → 销售</p>
  281. 完工提交后调度验收,验收通过归档并生成回款记录
  282. </div>
  283. </div>
  284. <div class="mt-3 rounded-2xl p-3 flex items-center" style="background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2);">
  285. <i class="fa fa-bolt text-red-500 mr-2"></i>
  286. <span class="text-xs text-gray-600"><b class="text-red-500">应急支线:</b>标记「应急」的任务跳过常规排队,调度直接指派应急待命班组优先出车</span>
  287. </div>
  288. </div>
  289. <p class="text-center text-[10px] text-gray-400 mt-4">青道夫管道疏通管理平台 · 架构 v2.0 | 外围结构固定,内部 SOP 可调整</p>
  290. </div>
  291. </body>
  292. </html>