From 32d066db6905e52076dbd5e7898992d5dced420e Mon Sep 17 00:00:00 2001 From: clz Date: Tue, 28 Jul 2026 11:19:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(ai-pick):=20=E4=B8=BB=E5=90=88=E7=BA=A6?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E9=97=B4=E8=B7=9D=E5=AF=B9=E9=BD=90Vue?= =?UTF-8?q?=E2=80=94=E2=80=94space:5=E6=94=B9=E4=B8=BAmargin({left:10})?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/ai-pick/AiPickNodeComponent.ets | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entry/src/main/ets/ai-pick/AiPickNodeComponent.ets b/entry/src/main/ets/ai-pick/AiPickNodeComponent.ets index 99e5260..8ba58c2 100644 --- a/entry/src/main/ets/ai-pick/AiPickNodeComponent.ets +++ b/entry/src/main/ets/ai-pick/AiPickNodeComponent.ets @@ -530,7 +530,7 @@ export struct AiPickNodeComponent { this.cardData.tabs[this.tabIdx].items, (item: PickContractItem) => { Row({ space: 8 }) { - Row({ space: 5 }) { + Row() { Text(item.name) .fontSize(16) .maxFontSize(16) @@ -548,6 +548,7 @@ export struct AiPickNodeComponent { .textAlign(TextAlign.Center) .borderRadius(2) .backgroundColor($r('app.color.bg_orange')) + .margin({ left: 10 }) } } .width('35%')