fast-cocos 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -110,11 +110,13 @@ class XlsxParser {
|
|
|
110
110
|
break;
|
|
111
111
|
case SheetType.Array:
|
|
112
112
|
if (sheetInfo.firstColumnMergedArray) {
|
|
113
|
+
console.info("\x1b[36m%s\x1b[0m", "解析首列合并行数组: " + name);
|
|
113
114
|
this.parseFirstColumnMergedArray(sheetInfo);
|
|
114
115
|
}
|
|
115
116
|
else {
|
|
116
117
|
this.parseArray(sheetInfo);
|
|
117
118
|
}
|
|
119
|
+
break;
|
|
118
120
|
case SheetType.KVMap:
|
|
119
121
|
this.parseKVMap(sheetInfo);
|
|
120
122
|
break;
|