diff --git a/entry/src/main/ets/pages/Verify.ets b/entry/src/main/ets/pages/Verify.ets index f8bc37e8a9fa0f4d33490e620b21de6c2357e08a..6bec3894dfec3be1c4f7183c1998d4db2ed0f3c3 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;