diff --git a/src/global/api.js b/src/global/api.js index dc858cc..03d2588 100644 --- a/src/global/api.js +++ b/src/global/api.js @@ -1662,7 +1662,8 @@ export function getDefaultRowHeight(options = {}) { } }, 1) - return Store.luckysheetfile[order].defaultRowHeight; + // *返回指定的工作表默认行高,如果未配置就返回全局的默认行高 + return Store.luckysheetfile[order].defaultRowHeight || Store.defaultrowlen; }