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)