|
@@ -104,7 +104,7 @@ public class JfGridUpdateService {
|
|
|
.index("1")
|
|
|
.sheetName("Sheet1")
|
|
|
.order(0)
|
|
|
- .row(rowSize)
|
|
|
+ .rowSize(rowSize)
|
|
|
.build();
|
|
|
JSONObject sheet = LuckySheet4SummaryHelp.getEmptySheet(sheet1);
|
|
|
|
|
@@ -271,6 +271,7 @@ public class JfGridUpdateService {
|
|
|
JSONObject positionCellV = new JSONObject();
|
|
|
positionCellV.put("tb", 2);
|
|
|
positionCell.put("v", positionCellV);
|
|
|
+ celldata.add(positionCell);
|
|
|
|
|
|
//内容
|
|
|
JSONObject contentCell = new JSONObject();
|
|
@@ -280,6 +281,7 @@ public class JfGridUpdateService {
|
|
|
JSONObject contentCellV = new JSONObject();
|
|
|
contentCellV.put("tb", 2); //自动换行
|
|
|
contentCell.put("v", contentCellV);
|
|
|
+ celldata.add(contentCell);
|
|
|
|
|
|
}
|
|
|
|