-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-management.html
More file actions
693 lines (667 loc) · 53 KB
/
Copy pathproject-management.html
File metadata and controls
693 lines (667 loc) · 53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<base href="/person/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>项目管理 - 罗小添 | 软件工程项目管理 | 团队管理</title>
<meta name="description" content="罗小添软件工程项目管理经验:团队管理、项目管理方法论、项目全流程管控、跨部门协作">
<meta name="keywords" content="项目管理,团队管理,软件工程,项目经理,技术管理,IT主管">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- 导航栏 -->
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">
<i class="fas fa-code"></i> 罗小添
</a>
<ul class="nav-menu">
<li><a href="index.html">首页</a></li>
<li class="dropdown">
<a href="chip.html">行业项目</a>
<ul class="dropdown-menu">
<li><a href="chip.html">光模块制造</a></li>
<li><a href="energy.html">能源行业(加气/加氢站)</a></li>
<li><a href="transit.html">轨道交通</a></li>
</ul>
</li>
<li><a href="career.html">职业经历</a></li>
<li><a href="about.html">关于我</a></li>
<li><a href="project-management.html" style="color:#165DFF;font-weight:bold">项目管理</a></li>
<li><a href="tech-knowledge.html">技术知识</a></li>
<li><a href="contact.html">联系我</a></li>
</ul>
</div>
</nav>
<div class="container">
<h2 class="section-title">软件工程项目管理</h2>
<!-- 管理理念 -->
<div class="project-category">
<h3>项目管理理念</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<p style="font-size: 16px; line-height: 2; color: #444;">
拥有<strong>8年+技术团队管理经验</strong>,具备从需求分析、架构设计到交付运维的全流程管控能力。
注重<strong>目标导向、以人为本</strong>的管理风格,擅长将复杂项目拆解为可执行的任务模块,
建立高效的沟通协作机制,确保团队目标一致、高效产出。
</p>
</div>
</div>
</div>
</div>
<!-- 管理经验时间线 -->
<div class="project-category">
<h3>管理经验 · 时间线</h3>
<div class="project-list">
<!-- 2024至今 -->
<div class="project-item">
<div class="project-header">
<h4>上位机开发技术负责人</h4>
<div class="project-period">2024.04 - 至今</div>
</div>
<div class="project-tech">绵阳九华光子通信技术有限公司</div>
<div class="project-content">
<p><strong>管理职责:</strong></p>
<ul>
<li>独立负责光电子生产设备上位机系统整体技术方案制定</li>
<li>管理S&K打线机、贴片机、光模块测试机等10+类设备的统一监控开发</li>
<li>制定技术规范与编码标准,确保代码质量和可维护性</li>
</ul>
</div>
</div>
<!-- 2022-2024 -->
<div class="project-item">
<div class="project-header">
<h4>项目经理 · 加气站(加氢站)自动化控制系统</h4>
<div class="project-period">2022.06 - 2024.03</div>
</div>
<div class="project-tech">重庆气体压缩机厂有限责任公司</div>
<div class="project-content">
<p><strong>管理职责:</strong></p>
<ul>
<li>带领<strong>8人技术团队</strong>(4名开发 + 2名测试 + 1名UI + 1名文档)完成项目研发</li>
<li>制定项目计划与里程碑,协调开发、测试和业务部门</li>
<li>建立周报/日报制度,确保项目进度透明可控</li>
<li>组织安全评估和计量精度测试,成功获得国家安全技术认证和计量器具型式批准证书</li>
</ul>
</div>
</div>
<!-- 2018-2022 -->
<div class="project-item">
<div class="project-header">
<h4>LNG部门技术经理</h4>
<div class="project-period">2018.09 - 2023.03</div>
</div>
<div class="project-tech">重庆气体压缩机厂有限责任公司</div>
<div class="project-content">
<p><strong>管理职责:</strong></p>
<ul>
<li>搭建<strong>4-5人技术团队</strong>,负责加气站SCADA系统全流程开发</li>
<li>主导需求分析、系统架构设计、任务分配和进度跟踪</li>
<li>编写技术文档规范,建立代码审查(Code Review)流程</li>
<li>负责与燃管中心等外部单位的技术对接与协调</li>
</ul>
</div>
</div>
<!-- 2014-2018 -->
<div class="project-item">
<div class="project-header">
<h4>软件工程师 / 项目经理</h4>
<div class="project-period">2014.09 - 2018.09</div>
</div>
<div class="project-tech">江苏张家港富瑞特种装备股份有限公司</div>
<div class="project-content">
<p><strong>管理职责:</strong></p>
<ul>
<li>独立负责加气站控制系统上位机软件的需求分析到交付全流程</li>
<li>协调燃管中心、现场工程团队等多方资源完成项目落地</li>
<li>管理20+加氢站并发数据采集的部署与运维</li>
</ul>
</div>
</div>
<!-- 2011-2014 -->
<div class="project-item">
<div class="project-header">
<h4>软件工程师 / 项目实施经理</h4>
<div class="project-period">2011.03 - 2014.09</div>
</div>
<div class="project-tech">成都华气厚普机电设备股份有限公司</div>
<div class="project-content">
<p><strong>管理职责:</strong></p>
<ul>
<li>主导加气机数据采集系统研发,管理项目实施全过程</li>
<li>负责客户现场部署实施与团队协调</li>
</ul>
</div>
</div>
</div>
</div>
<!-- 团队管理方法论 -->
<div class="project-category">
<h3>团队管理方法论</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;">
<!-- 团队搭建 -->
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #165DFF;">
<h4 style="margin-bottom: 15px; color: #165DFF;">
<i class="fas fa-users" style="margin-right: 8px;"></i>团队搭建与组建
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>根据项目需求合理配置岗位(开发/测试/UI/文档)</li>
<li>注重成员技能互补,建立梯队式人才结构</li>
<li>新成员入职引导:技术文档 + 代码规范 + 导师制</li>
<li>搭建过从3人到8人规模的技术团队</li>
</ul>
</div>
<!-- 目标管理 -->
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #10B981;">
<h4 style="margin-bottom: 15px; color: #10B981;">
<i class="fas fa-bullseye" style="margin-right: 8px;"></i>目标与进度管理
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>制定清晰的项目里程碑与交付节点</li>
<li>建立周报/日报制度,进度透明可控</li>
<li>使用甘特图/看板工具进行任务分解与跟踪</li>
<li>风险预警:提前识别瓶颈,制定应对预案</li>
</ul>
</div>
<!-- 沟通协作 -->
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #F59E0B;">
<h4 style="margin-bottom: 15px; color: #F59E0B;">
<i class="fas fa-comments" style="margin-right: 8px;"></i>沟通与协作机制
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>每日站会:15分钟快速同步进度与阻塞项</li>
<li>每周例会:回顾进展、调整计划、技术分享</li>
<li>跨部门协作:与业务/测试/运维定期对齐需求</li>
<li>建立问题升级机制,确保关键问题及时解决</li>
</ul>
</div>
<!-- 质量管控 -->
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #EF4444;">
<h4 style="margin-bottom: 15px; color: #EF4444;">
<i class="fas fa-shield-alt" style="margin-right: 8px;"></i>质量与风险管理
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>建立Code Review机制,保证代码质量</li>
<li>制定测试策略:单元测试 + 集成测试 + 验收测试</li>
<li>编写标准化技术文档,降低人员变动风险</li>
<li>组织安全评估与合规审查(国家安全认证经验)</li>
</ul>
</div>
<!-- 团队激励 -->
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #8B5CF6;">
<h4 style="margin-bottom: 15px; color: #8B5CF6;">
<i class="fas fa-star" style="margin-right: 8px;"></i>团队激励与成长
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>定期技术分享会,营造学习型团队氛围</li>
<li>根据成员特长分配任务,发挥个人优势</li>
<li>设立阶段性成果认可,增强团队成就感</li>
<li>关注成员职业发展,提供成长建议和机会</li>
</ul>
</div>
<!-- 项目交付 -->
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #EC4899;">
<h4 style="margin-bottom: 15px; color: #EC4899;">
<i class="fas fa-rocket" style="margin-right: 8px;"></i>交付与运维
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>制定上线检查清单,确保交付质量</li>
<li>编写运维手册和用户培训文档</li>
<li>建立售后反馈机制,持续优化系统</li>
<li>具备20+站点并发部署与运维管理经验</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 项目进度把控 -->
<div class="project-category">
<h3>项目进度把控</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<p style="font-size: 16px; line-height: 2; color: #444; margin-bottom: 20px;">
在多项目并行推进的环境下,建立了<strong>分层分级</strong>的进度管控体系,确保每个项目从启动到交付全程可视、可控。
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;">
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #165DFF;">
<h4 style="margin-bottom: 15px; color: #165DFF;">
<i class="fas fa-tasks" style="margin-right: 8px;"></i>计划制定与拆解
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>采用<strong>WBS工作分解结构</strong>,将项目拆解为可执行的最小任务单元</li>
<li>每个任务明确负责人、交付物、时间节点,杜绝责任不清</li>
<li>制定里程碑计划,设置关键检查点,阶段验收不走过场</li>
<li>预留缓冲时间:关键路径上预留15%-20%时间应对不确定性</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #10B981;">
<h4 style="margin-bottom: 15px; color: #10B981;">
<i class="fas fa-chart-line" style="margin-right: 8px;"></i>进度跟踪与可视化
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>使用<strong>甘特图</strong>直观展示项目整体进度和各任务依赖关系</li>
<li>看板工具(Kanban)管理任务流转:待办→进行中→已完成</li>
<li>每日站会15分钟快速同步,识别当日阻塞项并当场协调</li>
<li>周报制度:汇总完成情况、偏差分析、下周计划,向上透明汇报</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #F59E0B;">
<h4 style="margin-bottom: 15px; color: #F59E0B;">
<i class="fas fa-exclamation-triangle" style="margin-right: 8px;"></i>偏差识别与纠偏
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>建立<strong>红黄绿灯预警机制</strong>:绿灯正常、黄灯关注、红灯升级</li>
<li>进度偏差>5%时启动根因分析,制定纠偏措施</li>
<li>定期与客户/业务方对齐期望,避免需求蔓延导致进度失控</li>
<li>实践中成功应对过需求变更、人员变动等突发情况,保障按期交付</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #8B5CF6;">
<h4 style="margin-bottom: 15px; color: #8B5CF6;">
<i class="fas fa-calendar-check" style="margin-right: 8px;"></i>多项目并行管理
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>根据优先级和紧急程度<strong>动态调配资源</strong>,避免关键资源瓶颈</li>
<li>建立项目组合视图,一目了然所有项目的健康状态</li>
<li>协调跨项目公共模块开发,减少重复建设</li>
<li>实践中同时管理过3-4条并行产品线,均按期交付</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 项目风险控制 -->
<div class="project-category">
<h3>项目风险控制</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<p style="font-size: 16px; line-height: 2; color: #444; margin-bottom: 20px;">
在工业控制软件领域,系统稳定性直接关系到生产安全。建立了<strong>全生命周期风险管控机制</strong>,从需求阶段到运维阶段层层把关。
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;">
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #EF4444;">
<h4 style="margin-bottom: 15px; color: #EF4444;">
<i class="fas fa-shield-virus" style="margin-right: 8px;"></i>风险识别与评估
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>项目启动阶段组织<strong>风险识别会议</strong>,头脑风暴列出潜在风险清单</li>
<li>按<strong>发生概率×影响程度</strong>矩阵量化评估,分出高/中/低三级</li>
<li>常见风险覆盖:技术方案可行性、人员变动、需求蔓延、第三方依赖、安全合规</li>
<li>形成风险登记册,贯穿项目始终动态更新</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #F59E0B;">
<h4 style="margin-bottom: 15px; color: #F59E0B;">
<i class="fas fa-chess-king" style="margin-right: 8px;"></i>风险应对策略
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li><strong>规避</strong>:调整技术方案或流程消除高风险项(如用成熟方案替代未验证技术)</li>
<li><strong>转移</strong>:将安全认证等专业环节外包给有资质的第三方</li>
<li><strong>缓解</strong>:为核心开发人员配备备份人员,降低人员单点风险</li>
<li><strong>接受</strong>:对低概率低影响风险制定应急预案,不投入过多资源</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #165DFF;">
<h4 style="margin-bottom: 15px; color: #165DFF;">
<i class="fas fa-clipboard-check" style="margin-right: 8px;"></i>质量风险专项管控
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>Code Review制度:所有核心模块代码必须经过至少一人审查</li>
<li>自动化测试 + 人工验收双保险,杜绝"能跑就行"心态</li>
<li>安全评估:加气站/加氢站系统通过国家安全技术认证(防爆、计量)</li>
<li>版本管理:使用Git分支策略,主干随时可发布,紧急修复有据可查</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #10B981;">
<h4 style="margin-bottom: 15px; color: #10B981;">
<i class="fas fa-history" style="margin-right: 8px;"></i>实战风险案例
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li><strong>需求变更风险</strong>:某项目中期客户提出重大功能调整,通过影响分析说服客户分期实现,核心功能按期上线</li>
<li><strong>人员变动风险</strong>:核心开发离职前建立完整的交接文档和代码注释规范,新人2周内接手</li>
<li><strong>第三方依赖风险</strong>:PLC通信模块依赖硬件厂商SDK更新,提前做好版本锁定和兼容性测试</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 项目实施经验 -->
<div class="project-category">
<h3>项目实施经验</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<p style="font-size: 16px; line-height: 2; color: #444; margin-bottom: 20px;">
工业软件不同于纯互联网产品,<strong>现场实施部署</strong>是项目成败的关键环节。积累了从方案设计到现场调试、从培训到验收的全流程实施经验。
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;">
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #165DFF;">
<h4 style="margin-bottom: 15px; color: #165DFF;">
<i class="fas fa-clipboard-list" style="margin-right: 8px;"></i>实施准备与规划
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>制定<strong>现场实施Checklist</strong>:硬件环境检查、网络配置、软件部署、数据初始化</li>
<li>编写标准化部署手册,确保不同实施人员执行结果一致</li>
<li>提前准备应急预案:回滚方案、数据备份策略、离线运行模式</li>
<li>与客户现场负责人提前对齐实施窗口期和配合事项</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #10B981;">
<h4 style="margin-bottom: 15px; color: #10B981;">
<i class="fas fa-cogs" style="margin-right: 8px;"></i>现场部署与调试
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>具备<strong>20+站点</strong>现场实施经验,覆盖加气站、加氢站、光模块产线</li>
<li>熟悉工业现场环境:防爆区域作业规范、PLC/传感器对接、网络布线</li>
<li>现场问题快速定位:通过日志分析、网络抓包等手段排查通信故障</li>
<li>支持远程+现场结合模式,减少差旅成本,提高响应速度</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #F59E0B;">
<h4 style="margin-bottom: 15px; color: #F59E0B;">
<i class="fas fa-user-graduate" style="margin-right: 8px;"></i>用户培训与交付
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>编写分层培训材料:操作员快速入门手册 + 管理员详细配置指南</li>
<li>现场培训采用<strong>"演示→实操→考核"</strong>三步法,确保用户真正掌握</li>
<li>录制操作视频作为培训补充,方便后续新员工自学</li>
<li>交付物清单:软件安装包、源代码、技术文档、操作手册、验收报告</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #EC4899;">
<h4 style="margin-bottom: 15px; color: #EC4899;">
<i class="fas fa-headset" style="margin-right: 8px;"></i>售后运维与持续优化
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>建立<strong>三级售后响应机制</strong>:紧急2小时、重要24小时、一般3工作日</li>
<li>远程运维能力:通过VPN/远程桌面进行故障排查和版本升级</li>
<li>收集用户反馈形成需求池,推动产品迭代升级</li>
<li>某加气站系统持续运维3年+,累计迭代10+版本</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 交互经验 -->
<div class="project-category">
<h3>交互与沟通经验</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<p style="font-size: 16px; line-height: 2; color: #444; margin-bottom: 20px;">
项目管理本质上是<strong>"人"的管理</strong>。多年工作中积累了丰富的跨角色、跨层级、跨组织的沟通协作经验。
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;">
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #165DFF;">
<h4 style="margin-bottom: 15px; color: #165DFF;">
<i class="fas fa-user-tie" style="margin-right: 8px;"></i>向上管理与汇报
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li><strong>说结论先于说过程</strong>:汇报时先给出结论和建议,再展开细节</li>
<li>用数据说话:进度百分比、风险等级、资源利用率等量化指标</li>
<li>主动暴露问题:不报喜不报忧,提前预警让领导层有决策缓冲时间</li>
<li>提供选择题而非问答题:给出2-3个可行方案并附利弊分析</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #10B981;">
<h4 style="margin-bottom: 15px; color: #10B981;">
<i class="fas fa-users-cog" style="margin-right: 8px;"></i>团队内部沟通
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>营造<strong>心理安全</strong>氛围:鼓励成员说出困难,不责备、不甩锅</li>
<li>一对一沟通:定期与每位成员面谈,了解工作状态和职业发展诉求</li>
<li>技术讨论与决策分离:技术选型充分讨论,但决策后全员对齐执行</li>
<li>冲突处理:当面沟通、聚焦问题而非人身、寻求共赢方案</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #F59E0B;">
<h4 style="margin-bottom: 15px; color: #F59E0B;">
<i class="fas fa-building" style="margin-right: 8px;"></i>跨部门/外部协作
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li>与<strong>燃管中心、质监局</strong>等政府部门对接安全认证和计量检定</li>
<li>与硬件团队(PLC/传感器/电气)协调接口协议和调试配合</li>
<li>与业务部门(销售/运营)对齐产品需求和上线节奏</li>
<li>对外沟通原则:统一口径、书面留痕、承诺必达</li>
</ul>
</div>
<div style="background: var(--light); padding: 25px; border-radius: 12px; border-left: 4px solid #8B5CF6;">
<h4 style="margin-bottom: 15px; color: #8B5CF6;">
<i class="fas fa-hand-sparkles" style="margin-right: 8px;"></i>客户关系维护
</h4>
<ul style="color: #555; line-height: 2; padding-left: 20px;">
<li><strong>管理预期</strong>:项目初期明确范围边界,避免后期"这个也顺便做一下"</li>
<li>定期同步进展:客户不是要惊喜,而是要确定性和可控感</li>
<li>换位思考:理解客户业务痛点,从"做功能"转向"解决问题"</li>
<li>长期合作:多家客户从单项目合作发展为持续技术服务伙伴</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 项目具体经验 -->
<div class="project-category">
<h3>项目实战经验总结</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<p style="font-size: 16px; line-height: 2; color: #444; margin-bottom: 20px;">
从技术开发到项目管理,十余年工业软件领域深耕,每个项目都沉淀了可复用的经验教训。
</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px;">
<!-- 经验1 -->
<div style="padding: 25px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid #165DFF;">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 15px;">
<span style="background: #165DFF; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;">1</span>
<h4 style="margin: 0; color: #333;">技术选型:稳比新重要</h4>
</div>
<p style="color: #666; line-height: 1.9; font-size: 14px;">
工业控制软件对稳定性要求极高。在光模块SECS/GEM协议接入项目中,优先选择经过验证的成熟框架(C# + WPF),而非追逐新技术栈。新技术虽有优势,但团队学习成本、社区支持、长期维护风险都需要评估。核心原则:<strong>能用成熟方案解决的,不轻易引入技术债</strong>。
</p>
</div>
<!-- 经验2 -->
<div style="padding: 25px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid #10B981;">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 15px;">
<span style="background: #10B981; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;">2</span>
<h4 style="margin: 0; color: #333;">需求管理:文档是契约</h4>
</div>
<p style="color: #666; line-height: 1.9; font-size: 14px;">
经历过需求口头沟通导致后期扯皮的教训后,建立了严格的需求确认流程:<strong>所有需求必须有书面记录、双方签字确认</strong>。需求变更走正式变更流程(评估影响→核算成本→调整计划→重新确认),口头需求一律不纳入开发。这份"不近人情"的坚持,最终赢得了客户的尊重和项目的成功。
</p>
</div>
<!-- 经验3 -->
<div style="padding: 25px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid #F59E0B;">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 15px;">
<span style="background: #F59E0B; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;">3</span>
<h4 style="margin: 0; color: #333;">人员备份:别让项目依赖个人</h4>
</div>
<p style="color: #666; line-height: 1.9; font-size: 14px;">
早期团队规模小,核心模块只有一个人懂,一旦请假或离职项目就瘫痪。后来推行<strong>代码集体所有制</strong>:每个模块至少2人熟悉,定期轮岗交叉培训,强制Code Review保证代码可读性。核心原则:<strong>任何人的离职都不应成为项目中断的理由</strong>。
</p>
</div>
<!-- 经验4 -->
<div style="padding: 25px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid #EF4444;">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 15px;">
<span style="background: #EF4444; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;">4</span>
<h4 style="margin: 0; color: #333;">测试前置:越早发现问题成本越低</h4>
</div>
<p style="color: #666; line-height: 1.9; font-size: 14px;">
在加气站SCADA系统开发中推行<strong>测试左移</strong>策略:需求评审阶段测试人员就介入,提前编写测试用例;开发完成一个模块立即进行单元测试和集成测试,不等全部开发完再集中测试。缺陷发现越早,修复成本越低(需求阶段修复成本是上线后的1/100)。
</p>
</div>
<!-- 经验5 -->
<div style="padding: 25px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid #8B5CF6;">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 15px;">
<span style="background: #8B5CF6; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;">5</span>
<h4 style="margin: 0; color: #333;">现场实施:软件只是半成品</h4>
</div>
<p style="color: #666; line-height: 1.9; font-size: 14px;">
工业软件的交付不只在办公室。在20+站点实施中发现:<strong>软件写得再好,现场环境不匹配就一文不值</strong>。每次实施前必须实地考察硬件环境、网络条件、操作人员水平。曾经因现场触摸屏分辨率与开发环境不一致导致UI错位,从此强制要求所有界面适配多种分辨率。
</p>
</div>
<!-- 经验6 -->
<div style="padding: 25px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid #EC4899;">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 15px;">
<span style="background: #EC4899; color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px;">6</span>
<h4 style="margin: 0; color: #333;">持续迭代:交付不是终点</h4>
</div>
<p style="color: #666; line-height: 1.9; font-size: 14px;">
最好的需求来源于真实使用。建立了<strong>"交付→收集反馈→迭代优化"</strong>的闭环机制:系统上线后持续跟踪用户使用情况,定期回访收集改进建议。某加气站系统上线3年内迭代了10+版本,每次迭代都源于一线操作员的真实痛点。用户参与感越强,系统生命力越旺盛。
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 项目管理工具与知识 -->
<div class="project-category">
<h3>项目管理工具与知识体系</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;">
<div style="padding: 20px; background: white; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.08);">
<h4 style="margin-bottom: 12px; color: #333;">
<i class="fas fa-tasks" style="color: #165DFF; margin-right: 8px;"></i>项目管理工具
</h4>
<div style="display: flex; flex-wrap: wrap; gap: 8px;">
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">Git / GitLab</span>
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">SVN</span>
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">禅道</span>
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">Jira</span>
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">Redmine</span>
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">看板/Kanban</span>
<span style="background: #e8f0fe; padding: 4px 12px; border-radius: 15px; font-size: 13px;">甘特图</span>
</div>
</div>
<div style="padding: 20px; background: white; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.08);">
<h4 style="margin-bottom: 12px; color: #333;">
<i class="fas fa-book" style="color: #10B981; margin-right: 8px;"></i>管理方法论
</h4>
<div style="display: flex; flex-wrap: wrap; gap: 8px;">
<span style="background: #f0fdf4; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #15803d;">敏捷开发</span>
<span style="background: #f0fdf4; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #15803d;">Scrum</span>
<span style="background: #f0fdf4; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #15803d;">瀑布模型</span>
<span style="background: #f0fdf4; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #15803d;">WBS任务分解</span>
<span style="background: #f0fdf4; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #15803d;">风险管理</span>
<span style="background: #f0fdf4; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #15803d;">CMMI</span>
</div>
</div>
<div style="padding: 20px; background: white; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.08);">
<h4 style="margin-bottom: 12px; color: #333;">
<i class="fas fa-file-alt" style="color: #F59E0B; margin-right: 8px;"></i>文档与规范
</h4>
<div style="display: flex; flex-wrap: wrap; gap: 8px;">
<span style="background: #fffbeb; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #92400e;">需求规格说明书</span>
<span style="background: #fffbeb; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #92400e;">技术设计文档</span>
<span style="background: #fffbeb; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #92400e;">接口说明书</span>
<span style="background: #fffbeb; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #92400e;">操作手册</span>
<span style="background: #fffbeb; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #92400e;">测试方案</span>
<span style="background: #fffbeb; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #92400e;">编码规范</span>
</div>
</div>
<div style="padding: 20px; background: white; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.08);">
<h4 style="margin-bottom: 12px; color: #333;">
<i class="fas fa-certificate" style="color: #8B5CF6; margin-right: 8px;"></i>行业认证经验
</h4>
<div style="display: flex; flex-wrap: wrap; gap: 8px;">
<span style="background: #f3f0ff; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #6d28d9;">国家安全技术认证</span>
<span style="background: #f3f0ff; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #6d28d9;">计量器具型式批准</span>
<span style="background: #f3f0ff; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #6d28d9;">防爆认证对接</span>
<span style="background: #f3f0ff; padding: 4px 12px; border-radius: 15px; font-size: 13px; color: #6d28d9;">客户审计</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 管理成果 -->
<div class="project-category">
<h3>管理成果与关键指标</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; text-align: center;">
<div style="padding: 25px; background: linear-gradient(135deg, #165DFF 0%, #4080FF 100%); border-radius: 12px; color: white;">
<div style="font-size: 36px; font-weight: bold; margin-bottom: 8px;">8+</div>
<div style="font-size: 14px; opacity: 0.9;">年团队管理经验</div>
</div>
<div style="padding: 25px; background: linear-gradient(135deg, #10B981 0%, #34D399 100%); border-radius: 12px; color: white;">
<div style="font-size: 36px; font-weight: bold; margin-bottom: 8px;">8人</div>
<div style="font-size: 14px; opacity: 0.9;">最大团队规模</div>
</div>
<div style="padding: 25px; background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); border-radius: 12px; color: white;">
<div style="font-size: 36px; font-weight: bold; margin-bottom: 8px;">99.8%</div>
<div style="font-size: 14px; opacity: 0.9;">系统稳定运行率</div>
</div>
<div style="padding: 25px; background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%); border-radius: 12px; color: white;">
<div style="font-size: 36px; font-weight: bold; margin-bottom: 8px;">20+</div>
<div style="font-size: 14px; opacity: 0.9;">站点部署管理</div>
</div>
<div style="padding: 25px; background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); border-radius: 12px; color: white;">
<div style="font-size: 36px; font-weight: bold; margin-bottom: 8px;">2项</div>
<div style="font-size: 14px; opacity: 0.9;">国家认证获取</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 项目总结 -->
<div class="project-category">
<h3>管理心得</h3>
<div class="project-list">
<div class="project-item">
<div class="project-content">
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;">
<div style="padding: 20px; border: 1px solid #e5e7eb; border-radius: 10px;">
<i class="fas fa-lightbulb" style="font-size: 28px; color: #F59E0B; margin-bottom: 12px;"></i>
<h4 style="margin-bottom: 10px;">需求先行,文档为王</h4>
<p style="color: #666; line-height: 1.8;">充分的需求分析是项目成功的基石。每个项目坚持先梳理清楚需求再动手开发,用文档驱动共识,减少后期返工。</p>
</div>
<div style="padding: 20px; border: 1px solid #e5e7eb; border-radius: 10px;">
<i class="fas fa-handshake" style="font-size: 28px; color: #165DFF; margin-bottom: 12px;"></i>
<h4 style="margin-bottom: 10px;">信任团队,放权赋能</h4>
<p style="color: #666; line-height: 1.8;">根据成员特长合理分工,给予充分信任和自主空间。管理者不是"监工",而是"服务者"——为团队扫清障碍、提供资源。</p>
</div>
<div style="padding: 20px; border: 1px solid #e5e7eb; border-radius: 10px;">
<i class="fas fa-sync-alt" style="font-size: 28px; color: #10B981; margin-bottom: 12px;"></i>
<h4 style="margin-bottom: 10px;">持续改进,复盘成长</h4>
<p style="color: #666; line-height: 1.8;">每个项目结束后组织复盘,总结经验教训,形成可复用的方法论。管理能力在一次次实战中持续精进。</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-info">
<p>© 2026 罗小添 | 个人项目展示站</p>
<p>GitHub: <a href="https://github.com/royeLuo333" target="_blank">@royeLuo333</a></p>
</div>
</footer>
<script src="./js/main.js"></script>
</body>
</html>