• 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
  • ..
  • viewmodel
  • SearchResultContentData.ets
  • desc:搜索结果展示 · ffb1f077
    ffb1f077 Browse Files
    yangchenggong1_wd authored 2024-04-16 16:20:51 +0800
SearchResultContentData.ets 253 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import { SearchResultContentItem } from './SearchResultContentItem'

@Observed
export class SearchResultContentData{
  list:SearchResultContentItem[] = []


  keyword:string = ""
  pageNum: number = 0
  pageSize: number = 20
  totalCount: number = 0


}