server/system_service/src/main/java/com/doumee/core/annotation/excel/ExcelExporter.java
@@ -447,14 +447,14 @@ List<String> rowList = dataList.get(i); for (int j = 0; j < rowList.size(); j++) { Cell cell = row.createCell(j); if(i==0&&j==0){ cell.setCellValue("数据日期"); }else{ cell.setCellValue(rowList.get(j)); } // if(i==0&&j==0){ // cell.setCellValue("数据日期"); // }else{ // cell.setCellValue(rowList.get(j)); // } if(i==0){ sheet.setColumnWidth(i, rowList.get(i).length() * 2 * 256); sheet.setColumnWidth(i, (rowList.get(j).length() + 2 ) * 2 * 256); // cell.setCellStyle(hstyle); } if(i==0 || j==0){