HarmonyOS 点击tabs如何跳转到二级页面

主页底部使用了5个tabs,中间的tabs是没有TabContent的,点击是跳转到二级页面的,这个怎么设置呢?

HarmonyOS
2024-09-29 12:30:12
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

demo如下:

// xxx.ets  
import { router } from '@kit.ArkUI'  
@Entry  
@Component  
struct onePage {  
  @State fontColor: string = '#182431'  
  @State selectedFontColor: string = '#007DFF'  
  @State currentIndex: number = 0  
  private controller: TabsController = new TabsController()  
  tabTitle: string[] = ['健康', '商城', '预警中心', '消息', '我的']  
  @Builder  
  imgText(item: string, index: number) {  
    if (index === 2) {  
      Column() {  
        Column() {  
          Image($r('app.media.startIcon'))  
            .height(50)  
            .height(50)  
            .objectFit(ImageFit.Contain)  
            .borderRadius(100)  
        }  
        .height(60)  
        .width(60)  
        .offset({ y: -20 })  
        .backgroundColor(Color.White)  
        .borderRadius(100)  
        Text(item)  
          .fontSize(15)  
          .offset({ y: -10 })  
      }  
      .width('20%')  
      .height('100%')  
      .backgroundColor(Color.Blue)  
      .justifyContent(FlexAlign.Center)  
      .onClick(() => {  
        router.pushUrl({  
          url: 'pages/testPage'  
        })  
      })  
    }  
    else {  
      Column({ space: 10 }) {  
        Image($r('app.media.startIcon'))  
          .height(40)  
          .objectFit(ImageFit.Contain)  
        Text(item)  
          .fontSize(15)  
      }  
      .width('20%')  
      .height('100%')  
      .backgroundColor(Color.Blue)  
      .onClick(() => {  
        this.currentIndex = index  
        this.controller.changeIndex(this.currentIndex)  
      })  
    }  
  }  
  @Builder  
  bottomBuilder() {  
    Row() {  
      ForEach(this.tabTitle, (item: string, index: number) => {  
        this.imgText(item, index)  
      })  
    }  
    .justifyContent(FlexAlign.SpaceEvenly)  
    .width('100%')  
    .height('10%')  
  }  
  build() {  
    Column() {  
      Tabs({ index: this.currentIndex, controller: this.controller }) {  
        TabContent() {  
          Column().width('100%').height('100%').backgroundColor('#00CB87')  
        }  
        TabContent() {  
          Column().width('100%').height('100%').backgroundColor('#007DFF')  
        }      
        TabContent() {  
          Column().width('100%').height('100%').backgroundColor('#FFBF00')  
        }  
        TabContent() {  
          Column().width('100%').height('100%').backgroundColor('#cccccc')  
        }  
      }  
      .onChange((index: number) => {  
        this.currentIndex = index  
        if (this.currentIndex == 2) {  
          router.pushUrl({  
            url: 'pages/testPage'  
          })  
        }  
      })  
      .width('100%')  
      .height('90%')  
      this.bottomBuilder()  
    }  
    .width('100%')  
    .height('100%')  
  }  
}
分享
微博
QQ
微信
回复
2024-09-29 18:00:13
相关问题
HarmonyOS 二级页面左滑关闭问题
188浏览 • 1回复 待解决
Navigation二级导航嵌套
1096浏览 • 1回复 待解决
HarmonyOS 需要二级联动的demo
238浏览 • 1回复 待解决
二级浮层的出场动画实现
705浏览 • 1回复 待解决
HarmonyOS 如何跳转到应用设置页面
234浏览 • 1回复 待解决
HarmonyOS如何跳转到发短信页面
423浏览 • 1回复 待解决
如何跳转到WIFI列表页面
276浏览 • 1回复 待解决
如何跳转到系统发送短信页面
1992浏览 • 1回复 待解决
如何跳转到共享包中的指定页面
2095浏览 • 1回复 待解决
如何跳转到共享包中的指定页面
343浏览 • 1回复 待解决
如何跳转到应用市场app下载页面
7426浏览 • 1回复 待解决
服务卡片如何跳转到指定的页面呢?
6025浏览 • 1回复 待解决