From 8d793e6572ca5191072a68fbc5482863afa37640 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Fri, 12 Apr 2019 17:19:57 +0800 Subject: [PATCH] =?UTF-8?q?BI-42928=20fix:=20=E4=BC=A0=E7=99=BE=E5=88=86?= =?UTF-8?q?=E6=AF=94=E8=A2=AB=E8=AE=A1=E7=AE=97=E6=88=90=E6=95=B0=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/wrapper/layout/adapt/adapt.table.js | 6 +++++- src/core/wrapper/layout/layout.horizontal.js | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/core/wrapper/layout/adapt/adapt.table.js b/src/core/wrapper/layout/adapt/adapt.table.js index 8b2486e8b..ffd565504 100644 --- a/src/core/wrapper/layout/adapt/adapt.table.js +++ b/src/core/wrapper/layout/adapt/adapt.table.js @@ -50,7 +50,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } diff --git a/src/core/wrapper/layout/layout.horizontal.js b/src/core/wrapper/layout/layout.horizontal.js index 4a88f2ea9..cec743727 100644 --- a/src/core/wrapper/layout/layout.horizontal.js +++ b/src/core/wrapper/layout/layout.horizontal.js @@ -56,7 +56,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); }