From 50f160609dc3c111429875e457d9f64890f87dd2 Mon Sep 17 00:00:00 2001 From: sfchu Date: Tue, 10 Jun 2025 20:02:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E6=94=B6=E5=85=A5=E5=92=8C=E6=8A=95=E8=B5=84=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=EF=BC=8C=E5=9C=A8=E4=B8=AD=E6=96=87=E4=B8=8B?= =?UTF-8?q?=EF=BC=8C=E6=98=BE=E7=A4=BA=E8=8B=B1=E6=96=87=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/view/DialogComponent.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entry/src/main/ets/view/DialogComponent.ets b/entry/src/main/ets/view/DialogComponent.ets index 953911a..5df37d4 100644 --- a/entry/src/main/ets/view/DialogComponent.ets +++ b/entry/src/main/ets/view/DialogComponent.ets @@ -113,7 +113,7 @@ export struct DialogComponent { .width($r('app.float.image_size')) .aspectRatio(CommonConstants.FULL_SIZE) - Text(item.typeText) + Text(item.typeText === 'income' ? $r('app.string.income') : $r('app.string.invest')) .fontSize($r('app.float.font_size_S')) .fontColor(this.curType === item.typeText ? Color.White : $r('app.color.main_color')) .margin({ top: $r('app.float.edge_size_S') }) -- Gitee