|
@@ -103,7 +103,7 @@ const ExcelWriter = {
|
|
let excelData = [] as any;
|
|
let excelData = [] as any;
|
|
console.log("#debug#🚀 ~ file: test.vue:67 ~ testOne2Two ~ maxRow:", maxRow);
|
|
console.log("#debug#🚀 ~ file: test.vue:67 ~ testOne2Two ~ maxRow:", maxRow);
|
|
console.log("#debug#🚀 ~ file: test.vue:70 ~ testOne2Two ~ maxColumn:", maxColumn);
|
|
console.log("#debug#🚀 ~ file: test.vue:70 ~ testOne2Two ~ maxColumn:", maxColumn);
|
|
- for (let i = 0; i < maxColumn; i++) {
|
|
|
|
|
|
+ for (let i = 0; i <= maxColumn; i++) {
|
|
excelData[i] = [];
|
|
excelData[i] = [];
|
|
for (let j = 0; j <= maxRow; j++) {
|
|
for (let j = 0; j <= maxRow; j++) {
|
|
excelData[i][j] = null;
|
|
excelData[i][j] = null;
|