From 8856745406299fca4bee60d9645e94659792203a Mon Sep 17 00:00:00 2001 From: guy Date: Sat, 17 Jul 2021 10:50:26 +0800 Subject: [PATCH] update --- src/core/wrapper/layout/layout.td.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/wrapper/layout/layout.td.js b/src/core/wrapper/layout/layout.td.js index 94bdbc5cb..e191015b4 100644 --- a/src/core/wrapper/layout/layout.td.js +++ b/src/core/wrapper/layout/layout.td.js @@ -76,13 +76,14 @@ BI.TdLayout = BI.inherit(BI.Layout, { } var height = o.rowSize[idx] === "" ? "" : (o.rowSize[idx] < 1 ? ((o.rowSize[idx] * 100).toFixed(1) + "%") : o.rowSize[idx]); - + var rowHeight = BI.isNumber(o.rowSize[idx]) ? (o.rowSize[idx] <= 1 ? height : height / BI.pixRatio + BI.pixUnit) : height; var tr = BI._lazyCreateWidget({ type: "bi.default", tagName: "tr", height: height, css: { - "max-height": BI.isNumber(o.rowSize[idx]) ? (o.rowSize[idx] <= 1 ? height : height / BI.pixRatio + BI.pixUnit) : height + "max-height": rowHeight, + "min-height": rowHeight } });