From 4cd69dc90f83d487ae5321956bba19f9147c6143 Mon Sep 17 00:00:00 2001 From: Kira Date: Thu, 11 Mar 2021 09:23:01 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20fix:=20?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=86=99=E9=94=99=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/case/button/item.singleselect.radio.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/case/button/item.singleselect.radio.js b/src/case/button/item.singleselect.radio.js index f84105cda..3fc1983fa 100644 --- a/src/case/button/item.singleselect.radio.js +++ b/src/case/button/item.singleselect.radio.js @@ -43,7 +43,7 @@ BI.SingleSelectRadioItem = BI.inherit(BI.BasicButton, { items: BI.LogicFactory.createLogicItemsByDirection("left", { type: "bi.center_adapt", items: [this.radio], - width: o.conWrapperWidth + width: o.iconWrapperWidth }, this.text) })))); }, From 9af54f5a6e8b4d42176a16dee81419a0cbceb3c4 Mon Sep 17 00:00:00 2001 From: Kira Date: Wed, 21 Apr 2021 21:57:34 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20refactor:?= =?UTF-8?q?=20=E4=BF=AE=E6=94=B9=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/ob.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/core/ob.ts b/typescript/core/ob.ts index 893280633..54b10f8ba 100644 --- a/typescript/core/ob.ts +++ b/typescript/core/ob.ts @@ -21,7 +21,7 @@ export interface _OB { on(eventName: string, fn: Function): Function; - once(eventName: string, fn: Function): void; + once(eventName: string, fn?: Function): void; un(eName: string, fn: Function): void; From fbc550874346d9bb26da1380547b2d23413170fe Mon Sep 17 00:00:00 2001 From: Kira Date: Thu, 22 Apr 2021 09:45:13 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=20refactor:?= =?UTF-8?q?=20=E4=BF=AE=E6=94=B9=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/ob.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/core/ob.ts b/typescript/core/ob.ts index 54b10f8ba..50a80b8d6 100644 --- a/typescript/core/ob.ts +++ b/typescript/core/ob.ts @@ -21,9 +21,9 @@ export interface _OB { on(eventName: string, fn: Function): Function; - once(eventName: string, fn?: Function): void; + once(eventName: string, fn: Function): void; - un(eName: string, fn: Function): void; + un(eName: string, fn?: Function): void; _initRef(): void;