Commit 4fbb437ddd811488ffd7d10c2212bc9f42872a24
1 parent
480d849b1b
Exists in
master
and in
6 other branches
筛查统计
Showing 1 changed file with 2 additions and 2 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/ExcelUtil.java
View file @
4fbb437
... | ... | @@ -369,7 +369,7 @@ |
369 | 369 | titleFormt.setAlignment(jxl.format.Alignment.CENTRE); |
370 | 370 | titleFormt.setVerticalAlignment(VerticalAlignment.CENTRE); |
371 | 371 | |
372 | - WritableFont h1Title = new WritableFont(WritableFont.ARIAL, 18, WritableFont.NO_BOLD, false, UnderlineStyle.NO_UNDERLINE, Colour.BLACK); | |
372 | + WritableFont h1Title = new WritableFont(WritableFont.ARIAL, 12, WritableFont.NO_BOLD, false, UnderlineStyle.NO_UNDERLINE, Colour.BLACK); | |
373 | 373 | WritableCellFormat h1Formt = new WritableCellFormat(h1Title); |
374 | 374 | h1Formt.setBorder(jxl.format.Border.ALL, jxl.format.BorderLineStyle.THIN); |
375 | 375 | h1Formt.setAlignment(Alignment.LEFT); |
... | ... | @@ -382,7 +382,7 @@ |
382 | 382 | ws.addCell(label1); |
383 | 383 | |
384 | 384 | int arrayIndex = 0; |
385 | - for (int i = 6, len = values.size()+6; i < len; i++, arrayIndex++) | |
385 | + for (int i = 5, len = values.size()+5; i < len; i++, arrayIndex++) | |
386 | 386 | { |
387 | 387 | |
388 | 388 | Set<String> sets = values.get(arrayIndex).keySet(); |