From f839c5b413d354dacc2181a08dc617473798be37 Mon Sep 17 00:00:00 2001 From: lanterngamescn Date: Fri, 26 Jun 2026 20:49:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=AF=E5=8A=A8=E9=A1=B5=EF=BC=9A=E9=98=B6?= =?UTF-8?q?=E6=AE=B5=E6=8F=90=E7=A4=BA=E6=96=87=E5=AD=97=E7=A7=BB=E5=88=B0?= =?UTF-8?q?=E8=BF=9B=E5=BA=A6=E6=9D=A1=E4=B8=8B=E6=96=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SplashPage 覆盖层顺序调整为 进度条 → 阶段文案(原为文案 → 进度条)。模拟器验证通过。 Co-Authored-By: Claude Opus 4.8 (1M context) --- entry/src/main/ets/pages/SplashPage.ets | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/entry/src/main/ets/pages/SplashPage.ets b/entry/src/main/ets/pages/SplashPage.ets index c06083f..11b68b8 100644 --- a/entry/src/main/ets/pages/SplashPage.ets +++ b/entry/src/main/ets/pages/SplashPage.ets @@ -83,6 +83,11 @@ export struct SplashPage { // 启动进度/公告叠加在底部(深色文字,白底可见) Column({ space: 14 }) { if (this.blocked === '') { + Progress({ value: this.percent, total: 100, type: ProgressType.Linear }) + .width('56%') + .color(SplashPage.GOLD) + .backgroundColor('#E6E6E6') + // 阶段提示文字放在进度条下方 Row({ space: 8 }) { LoadingProgress() .width(20) @@ -92,10 +97,6 @@ export struct SplashPage { .fontSize(15) .fontColor(SplashPage.NAVY) } - Progress({ value: this.percent, total: 100, type: ProgressType.Linear }) - .width('56%') - .color(SplashPage.GOLD) - .backgroundColor('#E6E6E6') } else { Text(this.blocked) .fontSize(16)