Commit 54b6c8f27ef408d42e3b8081c55c4f86fbb5859b
1 parent
7164895571
Exists in
master
and in
6 other branches
唐山滦县产妇健康管理登记表
Showing 1 changed file with 18 additions and 18 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/ExcelUtil.java
View file @
54b6c8f
| ... | ... | @@ -427,32 +427,32 @@ |
| 427 | 427 | } |
| 428 | 428 | //创建Excel标题格式 |
| 429 | 429 | ws.mergeCells(0, 0, 0, 1); |
| 430 | - ws.addCell(new Label(0, 0, "编号")); | |
| 430 | + ws.addCell(new Label(0, 0, "编号",wcf)); | |
| 431 | 431 | ws.mergeCells(1, 0, 1, 1); |
| 432 | - ws.addCell(new Label(1, 0, "姓名")); | |
| 432 | + ws.addCell(new Label(1, 0, "姓名",wcf)); | |
| 433 | 433 | ws.mergeCells(2, 0, 2, 1); |
| 434 | - ws.addCell(new Label(2, 0, "家庭住址")); | |
| 434 | + ws.addCell(new Label(2, 0, "家庭住址",wcf)); | |
| 435 | 435 | ws.mergeCells(3, 0, 3, 1); |
| 436 | - ws.addCell(new Label(3, 0, "联系电话")); | |
| 436 | + ws.addCell(new Label(3, 0, "联系电话",wcf)); | |
| 437 | 437 | ws.mergeCells(4, 0, 4, 1); |
| 438 | - ws.addCell(new Label(4, 0, "末次月经")); | |
| 439 | - ws.mergeCells(5, 0, 10, 0); | |
| 440 | - ws.addCell(new Label(5, 0, "产前检查")); | |
| 441 | - ws.addCell(new Label(5, 1, "一")); | |
| 442 | - ws.addCell(new Label(6,1,"二")); | |
| 443 | - ws.addCell(new Label(7,1,"三")); | |
| 444 | - ws.addCell(new Label(8,1,"四")); | |
| 445 | - ws.addCell(new Label(9, 1, "五")); | |
| 438 | + ws.addCell(new Label(4, 0, "末次月经",wcf)); | |
| 439 | + ws.mergeCells(5, 0, 9, 0); | |
| 440 | + ws.addCell(new Label(5, 0, "产前检查",wcf)); | |
| 441 | + ws.addCell(new Label(5, 1, "一",wcf)); | |
| 442 | + ws.addCell(new Label(6,1,"二",wcf)); | |
| 443 | + ws.addCell(new Label(7,1,"三",wcf)); | |
| 444 | + ws.addCell(new Label(8,1,"四",wcf)); | |
| 445 | + ws.addCell(new Label(9, 1, "五",wcf)); | |
| 446 | 446 | ws.mergeCells(10, 0, 10, 1); |
| 447 | - ws.addCell(new Label(10, 0, "产检统计")); | |
| 447 | + ws.addCell(new Label(10, 0, "产检统计",wcf)); | |
| 448 | 448 | ws.mergeCells(11, 0, 11, 1); |
| 449 | - ws.addCell(new Label(11, 0, "出院小结")); | |
| 449 | + ws.addCell(new Label(11, 0, "出院小结",wcf)); | |
| 450 | 450 | ws.mergeCells(12, 0, 13, 0); |
| 451 | - ws.addCell(new Label(12, 0, "产后访视")); | |
| 452 | - ws.addCell(new Label(12, 1, "7天内")); | |
| 453 | - ws.addCell(new Label(13, 1, "42天内")); | |
| 451 | + ws.addCell(new Label(12, 0, "产后访视",wcf)); | |
| 452 | + ws.addCell(new Label(12, 1, "7天内",wcf)); | |
| 453 | + ws.addCell(new Label(13, 1, "42天内",wcf)); | |
| 454 | 454 | ws.mergeCells(14, 0, 14, 1); |
| 455 | - ws.addCell(new Label(14,0,"备注")); | |
| 455 | + ws.addCell(new Label(14,0,"备注",wcf)); | |
| 456 | 456 | |
| 457 | 457 | int k = 0; |
| 458 | 458 | //填充数据 |