From 84c087cd369f9fe61f5e9c39211bcf7e5cd99b44 Mon Sep 17 00:00:00 2001 From: lvyuanyuan Date: Sun, 23 Mar 2025 16:08:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=87=E9=A2=98=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/pages/Verify.ets | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/entry/src/main/ets/pages/Verify.ets b/entry/src/main/ets/pages/Verify.ets index f8bc37e..6bec389 100755 --- a/entry/src/main/ets/pages/Verify.ets +++ b/entry/src/main/ets/pages/Verify.ets @@ -38,27 +38,6 @@ export struct Verify { build() { NavDestination() { - Row() { - Image($r('app.media.ic_back')) - .width(CommonConstants.BACK_WIDTH) - .height(CommonConstants.BACK_HEIGHT) - .objectFit(ImageFit.Contain) - - Text($r('app.string.navigator_name')) - .fontSize(CommonConstants.NAVIGATOR_SIZE) - .fontWeight(CommonConstants.FONT_WEIGHT_DEEPER) - .fontColor($r('app.color.navigator_black')) - } - .onClick(() => { - this.pathStack.pop(); - }) - .width(CommonConstants.FULL_WIDTH) - - .margin({ - top: CommonConstants.NAVIGATOR_MARGIN_TOP, - left: CommonConstants.NAVIGATOR_MARGIN_LEFT - }) - Text($r('app.string.title_name')) .fontSize(CommonConstants.TITLE_SIZE) .fontWeight(CommonConstants.FONT_WEIGHT_DEEPER) @@ -94,7 +73,7 @@ export struct Verify { .backgroundColor($r('app.color.page_background_grey')) .width(CommonConstants.FULL_WIDTH) .height(CommonConstants.FULL_HEIGHT) - .hideTitleBar(true) + .title($r('app.string.navigator_name')) .hideToolBar(true) .onReady((context: NavDestinationContext) => { this.pathStack = context.pathStack; -- Gitee