From 68d1cbd988413025fb021dbc4816fe4ad54fb74c Mon Sep 17 00:00:00 2001 From: zsmj1994 Date: Fri, 12 Mar 2021 10:29:23 +0800 Subject: [PATCH] =?UTF-8?q?BI-82802=20&&=20BI-82804=20fix:=20=E6=81=A2?= =?UTF-8?q?=E5=A4=8D=E5=88=B0=E9=92=88=E5=AF=B9=E7=A7=BB=E5=8A=A8=E7=AB=AF?= =?UTF-8?q?=E9=80=82=E9=85=8D=E6=94=B9=E5=8A=A8=E4=B9=8B=E5=89=8D=E7=9A=84?= =?UTF-8?q?=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 累了,一切都等BI这次发布后再调整 --- src/case/button/item.multiselect.js | 4 ++-- src/case/button/item.singleselect.radio.js | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/case/button/item.multiselect.js b/src/case/button/item.multiselect.js index 0bd077f06..965363418 100644 --- a/src/case/button/item.multiselect.js +++ b/src/case/button/item.multiselect.js @@ -30,8 +30,8 @@ BI.MultiSelectItem = BI.inherit(BI.BasicButton, { whiteSpace: "nowrap", textHeight: o.height, height: o.height, - hgap: o.textHgap, - rgap: o.textRgap, + hgap: o.hgap, + rgap: o.rgap, lgap: o.textLgap, text: o.text, keyword: o.keyword, diff --git a/src/case/button/item.singleselect.radio.js b/src/case/button/item.singleselect.radio.js index 21b9ad155..5821f4124 100644 --- a/src/case/button/item.singleselect.radio.js +++ b/src/case/button/item.singleselect.radio.js @@ -12,6 +12,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { }, height: 24, iconWrapperWidth: 26, + hgap: 10, textHgap: 0, textLgap: 0, textRgap: 0 @@ -30,7 +31,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { whiteSpace: "nowrap", textHeight: o.height, height: o.height, - hgap: o.textHgap, + hgap: o.hgap, rgap: o.textRgap, lgap: o.textLgap, text: o.text,