• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • page
  • MinePageComponent.ets
  • 优化弹框 · 4212d16b
    4212d16b Browse Files
    shishuangxi authored 2024-03-19 09:11:37 +0800
MinePageComponent.ets 296 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { WDRouterPage, WDRouterRule } from 'wdRouter';

const TAG = 'PageComponent';

/**
 * 我的页面
 */
@Component
export struct MinePageComponent {
  // TODO 待完善
  build() {
    Text('我的页面').onClick(()=>{
      WDRouterRule.jumpWithPage(WDRouterPage.loginPage)
    })
  }
}