• 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
  • ..
  • pages
  • SearchCreatorPage.ets
  • desc:搜索跳转 和 登录注销处理 · aac1a9ea
    aac1a9ea Browse Files
    yangchenggong1_wd authored 2024-04-18 10:52:58 +0800
SearchCreatorPage.ets 269 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import { CustomTitleUI } from '../components/reusable/CustomTitleUI';

@Entry
@Component
struct SearchCreatorPage {

  build() {
    Row() {
      Column() {
        CustomTitleUI({titleName:"全部结果"})

      }
      .width('100%')
    }
    .height('100%')
  }
}