美文网首页
鸿蒙4.0 多级列表联动

鸿蒙4.0 多级列表联动

作者: HT_Jonson | 来源:发表于2024-01-10 15:46 被阅读0次
iShot_2024-01-11_15.39.52(1).gif

放出部分源码 model 不分 自己创建

import { CommonTopBar } from '../../Component/CommonTopBar'
import ClassifyModel from '../../ViewModel/ClassifyModel'
import CourseModel from '../../ViewModel/CourseModel'
import mineViewModel from '../../ViewModel/MineViewModel'
@Entry
@Component
export struct MinePage {
  @State classifyList: Array<ClassifyModel> = []
  private scroll:Scroller = new Scroller()
  private classifyScroll = new Scroller()
  @State  currentClassify:number = 0

  aboutToAppear(){
   this.classifyList =  mineViewModel.getData()
    console.log('linkedata:~~~~~~~~',JSON.stringify(this.classifyList))
  }

  @Builder
  classifyHeader(classifyName:string){
    Row(){
      Text(classifyName).textAlign(TextAlign.Center).width('100%').height('60vp')
        .backgroundColor('white')

    }
  }

  @Builder
  CourseItem(item:CourseModel,index:number){
    Row(){
      Image(item.imageUrl)
        .height('100%')
        .aspectRatio(1)
      Text(item.price.toString())

    }
    .backgroundColor('gray')
    .width('90%')
    .height('100vp')
    .border({radius:'10vp'})
  }

  classifyChangeAction(start,flg:Boolean){
    if (this.currentClassify !== start) {
      this.currentClassify = start;
      if (!flg) {
        // scroll the course scroll.
        this.scroll.scrollToIndex(start);
      } else {
        // scroll the classify scroll.
        this.classifyScroll.scrollToIndex(start);
      }
    }
  }

  build() {
    Column() {
      CommonTopBar({ title: '我的', backButton: false, alpha: 1, rightButton: null })
      Row() {
        List({scroller:this.scroll}) {
          ForEach(this.classifyList, (item: ClassifyModel, index: number) => {
            ListItem() {
              Text(item.classifyName).width('100vp').height('60vp').textAlign(TextAlign.Center)
                .backgroundColor(this.currentClassify === index ? 'white':'gray')
                .onClick(()=>{
                  this.classifyChangeAction(index,true)
                })
            }
          })
        }
        .height('100%')
        .width('30%')

        List({scroller: this.classifyScroll}){
          ForEach(this.classifyList,(item:ClassifyModel,index:number)=>{
              ListItemGroup({
                header:this.classifyHeader(item.classifyName),
                space:12
              }){
                ForEach(item.courseList,(classifyItem:CourseModel)=>{
                  this.CourseItem(classifyItem,index)
                })
              }

          })
        }
        .sticky(StickyStyle.Header)
        .width('70%')
        .height('100%')
        .onScrollIndex((start)=>{this.classifyChangeAction(start,false)})

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

相关文章

网友评论

      本文标题:鸿蒙4.0 多级列表联动

      本文链接:https://www.haomeiwen.com/subject/vnjzndtx.html