HarmonyOS 子组件如何触发父组件中的方法

1、如何在子组件触发父组件中的方法。

2、在replayComp组件中点击如何切换样式及触发父组件方法。

代码如下:

import hilog from '@ohos.hilog';
import { HighSpeedItem } from '../bean/HighSpeedRseponse';

interface listItem {
  money: string
  text: string
  title: string
  data: string
}

class StringData {
  money: string
  text: string
  title: string
  data: string

  constructor(money: string, text: string, title: string, data: string) {
    this.money = money;
    this.text = text;
    this.title = title;
    this.data = data;
  }
}

class BasicDataSource implements IDataSource {
  private listeners: DataChangeListener[] = [];
  private originDataArray: StringData[] = [];

  public totalCount(): number {
    return 0;
  }

  public getData(index: number): StringData {
    return this.originDataArray[index];
  }

  registerDataChangeListener(listener: DataChangeListener): void {
    if (this.listeners.indexOf(listener) < 0) {
      console.info('add listener');
      this.listeners.push(listener);
    }
  }

  unregisterDataChangeListener(listener: DataChangeListener): void {
    const pos = this.listeners.indexOf(listener);
    if (pos >= 0) {
      console.info('remove listener');
      this.listeners.splice(pos, 1);
    }
  }

  notifyDataReload(): void {
    this.listeners.forEach(listener => {
      listener.onDataReloaded();
    })
  }

  notifyDataAdd(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataAdd(index);
    })
  }

  notifyDataChange(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataChange(index);
    })
  }

  notifyDataDelete(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataDelete(index);
    })
  }

  notifyDataMove(from: number, to: number): void {
    this.listeners.forEach(listener => {
      listener.onDataMove(from, to);
    })
  }
}

class MyDataSource extends BasicDataSource {
  private dataArray: StringData[] = [];

  public totalCount(): number {
    return this.dataArray.length;
  }

  public getData(index: number): StringData {
    return this.dataArray[index];
  }

  public addData(index: number, data: StringData): void {
    this.dataArray.splice(index, 0, data);
    this.notifyDataAdd(index);
  }

  public pushData(data: StringData): void {
    this.dataArray.push(data);
    this.notifyDataAdd(this.dataArray.length - 1);
  }

  public reloadData(): void {
    this.notifyDataReload();
  }

  //删除全部数据
  public clear(): void {
    // this.dataArray = []
    // this.notifyDataReload();
    this.empty()
    this.refresh()
  }

  public empty(): void {
    this.dataArray = []
  }

  public refresh(): void {
    this.notifyDataReload();

  }
}


@Entry
@Component
struct Index {
  private title: string = '我的优惠券'
  private data: MyDataSource = new MyDataSource();
  @State currentIndex: number = 0
  @State highSheepNum: number = 0
  @State tollStationNum: number = 0
  @State highSheepArray: highSheepItem[] = [
    new highSheepItem(0, "全部", 'all', 0, true),
    new highSheepItem(1, "商品", 'all', 0, false),
    new highSheepItem(2, "体验", 'all', 0, false),
  ] //高速//拥堵 type = 1  管制 type =2 事故 type = 3 施工 type = 4 其他 type = 5
  @State listDate: listItem[] = [
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减1',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    }
  ]

  aboutToAppear(): void {
    // 请求数据模拟
    this.init()
  }

  changeData(title: string) {
    this.data.clear();
    let that = this;
    setTimeout(() => {
      // hilog.info(0x0000, '数据1', '1')
      // hilog.info(0x0000, '数据2',JSON.stringify(that.listDate))
      // hilog.info(0x0000, '数据3',title)
      for (let i = 0; i <= that.listDate.length; i++) {
        hilog.info(0x0000, '数据4', JSON.stringify(that.listDate[i]))
        let listDate: listItem = that.listDate[i] as listItem;
        if (listDate?.title?.indexOf(title) !== -1) {
          that.data.pushData(new StringData(listDate?.money, listDate?.text, listDate?.title, listDate?.data));
        }
      }
      this.data.reloadData();
      this.highSheepNum = this.data.totalCount()
      hilog.info(0x0000, '组件加载2', JSON.stringify(this.data))

    }, 500)

  }

  build() {
    Column() {
      Tabs({ barPosition: BarPosition.Start }) {
        TabContent() {
          this.highSpeedBuilder()
        }.tabBar(this.TabRoadBuilder(0, '优惠券', this.highSheepNum))

        TabContent() {
          this.highSpeedBuilder()
        }.tabBar(this.TabRoadBuilder(1, '用于体验', this.tollStationNum))
      }
      .barWidth('100%')
      .scrollable(false)
      .vertical(false)
      .barHeight(40)
      .width('100%')
      .onChange((index: number) => {
        this.currentIndex = index;
        this.changeData('体验')

        if (index == 1) {
          // this.getStationEvent()
        } else if (index == 2) {
          // this.getServiceEvent()

          // this.getEventListIntroduc()
        }
      })
      .width('100%')
      .height('100%')
      .backgroundColor('#ffffff')
    }.width('100%').height('100%')

  }

  @Builder
  TabRoadBuilder(index: number, name: string, num: number) {
    Column() {
      Text(name + '(' + num + ')')
        .fontColor(this.currentIndex === index ? '#015DFF' : '#999999')
        .fontSize(16)
        .fontWeight(this.currentIndex === index ? 500 : 400)
        .lineHeight(22)
        .margin({ top: 6, bottom: 6 })

      Divider().strokeWidth(3).color(this.currentIndex === index ? '#015DFF' : '#999999').width(24)
    }.width('100%')
  }

  @Builder
  highSpeedBuilder() {
    Column() {
      Flex({ justifyContent: FlexAlign.SpaceAround }) {
        ForEach(this.highSheepArray, (item: highSheepItem) => {
          replayComp({ item: item })
        }, (item: highSheepItem) => item.title)
      }
      .padding({
        left: 10,
        right: 10,
        bottom: 12,
        top: 12
      })
      .width('100%')

      Text(this.title)
        .fontSize(18)
        .fontWeight(FontWeight.Bold)
        .fontFamily('Arial')
      Row() {
        TextInput({ placeholder: '请输入优惠码' })
          .width('75%')
          .fontColor(Color.Blue)
          .fontSize(14)
          .fontStyle(FontStyle.Italic)
          .fontWeight(FontWeight.Bold)
          .fontFamily('Arial')
          .placeholderColor(0x999999)
          .placeholderFont({
            size: 16,
            weight: FontWeight.Medium,
            family: 'cursive',
            style: FontStyle.Italic
          })

        Button('筛选', { type: ButtonType.Normal, stateEffect: true })
          .width('25%')
          .fontSize(14)
          .fontWeight(FontWeight.Medium)
          .backgroundColor('#cccccc')
          .borderRadius(5)
          .onClick(() => {


          })
      }
      .padding({ top: 35, bottom: 10 })

      Row() {
        Text(`您有${this.highSheepNum}张优惠券可领用~`)
          .fontSize(12)
          .textAlign(TextAlign.End)
        Text('>')
      }
      .margin({ bottom: 10 })

      List({ space: 10 }) {
        LazyForEach(this.data, (item: listItem) => {
          ListItem() {
            Row() {
              Column() {
                Text(item.money)
                  .margin({ top: 20, bottom: 20 })
                  .fontColor('#f9f4d7')
                  .borderRadius(5)
                Text(item.text)
                  .textAlign(TextAlign.Center)
                  .fontSize(12)
                  .fontColor('#f9f4d7')
                  .borderRadius(5)
              }
              .width('30%')
              .height(100)
              .backgroundColor('#fe6a48')

              Column() {
                Row() {
                  Text(item.title)
                    .textAlign(TextAlign.Start)
                    .margin({ top: 15, left: -110, bottom: 40 })
                }

                Row() {
                  Text(item.data)
                    .fontSize(10)
                    .margin({ left: -5, right: 25 })
                  Button('去使用', { type: ButtonType.Capsule })
                    .width('32%')
                    .height(20)
                    .fontSize(12)
                    .fontColor('#f6a200')
                    .backgroundColor('#cccccc')
                    .borderColor('#f6a200')
                }
              }
              .width('70%')
              .height(100)
              .backgroundColor('#fff')
            }.onAppear(() => {
              // hilog.info(0x0000, '组件加载', item.title)
              // hilog.info(0x0000, '组件加载1', JSON.stringify(this.data.totalCount()))
            })
          }
        }, (item: listItem) => item.title)
      }
    }
    .padding(12)
    .height('100%')
    .backgroundColor(0xF1F3F5)
  }

  @Builder
  tollStationsBuilder() {
    Column() {
      Text('测试')
    }
  }

  init() {
    for (let i = 0; i < this.listDate.length; i++) {
      // hilog.info(0x0000, '循环',this.listDate[i].title)
      this.data.pushData(new StringData(this.listDate[i].money, this.listDate[i].text, this.listDate[i].title,
        this.listDate[i].data));
    }
    this.highSheepNum = this.data.totalCount()
    this.Statistics()
    // console.log(JSON.stringify(this.data),'[Log]')
  }

  Statistics() {
    let controlNum: number = 0; //商品
    let congestionNum: number = 0; //体验
    for (let i = 0; i < this.listDate.length; i++) {
      if (this.listDate[i].title?.indexOf('商品') !== -1) {
        controlNum++
      }
      if (this.listDate[i].title?.indexOf('体验') !== -1) {
        congestionNum++
      }
    }
    for (let j = 0; j < this.highSheepArray.length; j++) {
      if (this.highSheepArray[j].title == '全部') {
        this.highSheepArray[j].number = this.highSheepNum
      }
      if (this.highSheepArray[j].title == '商品') {
        this.highSheepArray[j].number = controlNum
      }
      if (this.highSheepArray[j].title == '体验') {
        this.highSheepArray[j].number = congestionNum
      }

    }
  }
}

@Component
struct replayComp {
  @ObjectLink item: highSheepItem
  @State highSheepCur: number = 0
  @State selectedFontColor: string = '#015DFF'

  build() {
    Column() {
      Text(this.item.title + '(' + this.item.number + ')')
        .fontSize(14)
        .fontColor(this.highSheepCur == this.item.index ? '#015DFF' : '#999999')
        .fontWeight(this.highSheepCur === this.item.index ? 500 : 400)
        .margin({ bottom: 6 })
      Divider()
        .strokeWidth(3)
        .color(this.highSheepCur === this.item.index ? this.selectedFontColor : Color.White)
        .width(24)

    }.onClick(() => {
      this.highSheepCur = this.item.index;
      // this.changeData(this.item.title)
      // 1、想在这里面触发父级的方法changeData 怎么触发
      // 2、点击的时候怎么能做到切换样式
    })
  }
}

@Observed
class highSheepItem {
  index: number
  title: string
  code: string
  number: number
  ischeck: boolean

  constructor(index: number, title: string, code: string, number: number, ischeck: boolean) {
    this.index = index
    this.title = title
    this.code = code
    this.number = number
    this.ischeck = ischeck
  }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.
  • 219.
  • 220.
  • 221.
  • 222.
  • 223.
  • 224.
  • 225.
  • 226.
  • 227.
  • 228.
  • 229.
  • 230.
  • 231.
  • 232.
  • 233.
  • 234.
  • 235.
  • 236.
  • 237.
  • 238.
  • 239.
  • 240.
  • 241.
  • 242.
  • 243.
  • 244.
  • 245.
  • 246.
  • 247.
  • 248.
  • 249.
  • 250.
  • 251.
  • 252.
  • 253.
  • 254.
  • 255.
  • 256.
  • 257.
  • 258.
  • 259.
  • 260.
  • 261.
  • 262.
  • 263.
  • 264.
  • 265.
  • 266.
  • 267.
  • 268.
  • 269.
  • 270.
  • 271.
  • 272.
  • 273.
  • 274.
  • 275.
  • 276.
  • 277.
  • 278.
  • 279.
  • 280.
  • 281.
  • 282.
  • 283.
  • 284.
  • 285.
  • 286.
  • 287.
  • 288.
  • 289.
  • 290.
  • 291.
  • 292.
  • 293.
  • 294.
  • 295.
  • 296.
  • 297.
  • 298.
  • 299.
  • 300.
  • 301.
  • 302.
  • 303.
  • 304.
  • 305.
  • 306.
  • 307.
  • 308.
  • 309.
  • 310.
  • 311.
  • 312.
  • 313.
  • 314.
  • 315.
  • 316.
  • 317.
  • 318.
  • 319.
  • 320.
  • 321.
  • 322.
  • 323.
  • 324.
  • 325.
  • 326.
  • 327.
  • 328.
  • 329.
  • 330.
  • 331.
  • 332.
  • 333.
  • 334.
  • 335.
  • 336.
  • 337.
  • 338.
  • 339.
  • 340.
  • 341.
  • 342.
  • 343.
  • 344.
  • 345.
  • 346.
  • 347.
  • 348.
  • 349.
  • 350.
  • 351.
  • 352.
  • 353.
  • 354.
  • 355.
  • 356.
  • 357.
  • 358.
  • 359.
  • 360.
  • 361.
  • 362.
  • 363.
  • 364.
  • 365.
  • 366.
  • 367.
  • 368.
  • 369.
  • 370.
  • 371.
  • 372.
  • 373.
  • 374.
  • 375.
  • 376.
  • 377.
  • 378.
  • 379.
  • 380.
  • 381.
  • 382.
  • 383.
  • 384.
  • 385.
  • 386.
  • 387.
  • 388.
  • 389.
  • 390.
  • 391.
  • 392.
  • 393.
  • 394.
  • 395.
  • 396.
  • 397.
  • 398.
  • 399.
  • 400.
  • 401.
  • 402.
  • 403.
  • 404.
  • 405.
  • 406.
  • 407.
  • 408.
  • 409.
  • 410.
  • 411.
  • 412.
  • 413.
  • 414.
  • 415.
  • 416.
  • 417.
  • 418.
  • 419.
  • 420.
  • 421.
  • 422.
  • 423.
  • 424.
  • 425.
  • 426.
  • 427.
  • 428.
  • 429.
  • 430.
  • 431.
  • 432.
  • 433.
  • 434.
  • 435.
  • 436.
  • 437.
  • 438.
  • 439.
  • 440.
  • 441.
  • 442.
  • 443.
  • 444.
  • 445.
  • 446.
  • 447.
  • 448.
  • 449.
  • 450.
  • 451.
  • 452.
  • 453.
  • 454.
  • 455.
  • 456.
  • 457.
  • 458.
  • 459.
  • 460.
  • 461.
  • 462.
  • 463.
  • 464.
  • 465.
  • 466.
  • 467.
  • 468.
  • 469.
  • 470.
  • 471.
  • 472.
  • 473.
  • 474.
  • 475.
  • 476.
  • 477.
  • 478.
  • 479.
  • 480.
  • 481.
  • 482.
  • 483.
  • 484.
  • 485.
  • 486.
  • 487.
  • 488.
  • 489.
  • 490.
  • 491.
  • 492.
  • 493.
  • 494.
  • 495.
  • 496.
  • 497.
  • 498.
  • 499.
  • 500.
  • 501.
  • 502.
  • 503.
  • 504.
  • 505.
  • 506.
  • 507.
  • 508.
  • 509.
  • 510.
  • 511.
  • 512.
  • 513.
  • 514.
  • 515.
  • 516.
  • 517.
  • 518.
  • 519.
  • 520.
  • 521.
  • 522.
  • 523.
  • 524.
  • 525.
  • 526.
  • 527.
  • 528.
  • 529.
  • 530.
  • 531.
  • 532.
  • 533.
  • 534.
  • 535.
  • 536.
  • 537.
  • 538.
  • 539.
  • 540.
  • 541.
  • 542.
  • 543.
  • 544.
  • 545.
  • 546.
  • 547.
  • 548.
  • 549.
  • 550.
  • 551.
  • 552.
  • 553.
  • 554.
  • 555.
  • 556.
  • 557.
  • 558.
  • 559.
  • 560.
  • 561.
  • 562.
  • 563.
  • 564.
  • 565.
  • 566.
  • 567.
  • 568.
  • 569.
  • 570.
  • 571.
  • 572.
  • 573.
  • 574.
  • 575.
  • 576.
  • 577.
  • 578.
  • 579.
  • 580.
  • 581.
  • 582.
  • 583.
  • 584.
  • 585.
  • 586.
  • 587.
  • 588.
  • 589.
  • 590.
  • 591.
  • 592.
  • 593.
  • 594.
  • 595.
  • 596.
  • 597.
HarmonyOS
2024-12-25 11:47:24
810浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
put_get

示例参考如下:

import hilog from '@ohos.hilog';

// import { HighSpeedItem } from '../bean/HighSpeedRseponse';

interface listItem {
  money: string
  text: string
  title: string
  data: string
}

class StringData {
  money: string
  text: string
  title: string
  data: string

  constructor(money: string, text: string, title: string, data: string) {
    this.money = money;
    this.text = text;
    this.title = title;
    this.data = data;
  }
}

class BasicDataSource implements IDataSource {
  private listeners: DataChangeListener[] = [];
  private originDataArray: StringData[] = [];

  public totalCount(): number {
    return 0;
  }

  public getData(index: number): StringData {
    return this.originDataArray[index];
  }

  registerDataChangeListener(listener: DataChangeListener): void {
    if (this.listeners.indexOf(listener) < 0) {
      console.info('add listener');
      this.listeners.push(listener);
    }
  }

  unregisterDataChangeListener(listener: DataChangeListener): void {
    const pos = this.listeners.indexOf(listener);
    if (pos >= 0) {
      console.info('remove listener');
      this.listeners.splice(pos, 1);
    }
  }

  notifyDataReload(): void {
    this.listeners.forEach(listener => {
      listener.onDataReloaded();
    })
  }

  notifyDataAdd(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataAdd(index);
    })
  }

  notifyDataChange(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataChange(index);
    })
  }

  notifyDataDelete(index: number): void {
    this.listeners.forEach(listener => {
      listener.onDataDelete(index);
    })
  }

  notifyDataMove(from: number, to: number): void {
    this.listeners.forEach(listener => {
      listener.onDataMove(from, to);
    })
  }
}

class MyDataSource extends BasicDataSource {
  private dataArray: StringData[] = [];

  public totalCount(): number {
    return this.dataArray.length;
  }

  public getData(index: number): StringData {
    return this.dataArray[index];
  }

  public addData(index: number, data: StringData): void {
    this.dataArray.splice(index, 0, data);
    this.notifyDataAdd(index);
  }

  public pushData(data: StringData): void {
    this.dataArray.push(data);
    this.notifyDataAdd(this.dataArray.length - 1);
  }

  public reloadData(): void {
    this.notifyDataReload();
  }

  //删除全部数据
  public clear(): void {
    // this.dataArray = []
    // this.notifyDataReload();
    this.empty()
    this.refresh()
  }

  public empty(): void {
    this.dataArray = []
  }

  public refresh(): void {
    this.notifyDataReload();

  }
}


@Entry
@Component
struct Index {
  private title: string = '我的优惠券'
  private data: MyDataSource = new MyDataSource();
  @State currentIndex: number = 0
  @State highSheepNum: number = 0
  @State tollStationNum: number = 0
  @State highSheepCur: number = 0
  @State highSheepArray: highSheepItem[] = [
    new highSheepItem(0, "全部", 'all', 0, true),
    new highSheepItem(1, "商品", 'all', 0, false),
    new highSheepItem(2, "体验", 'all', 0, false),
  ] //高速//拥堵 type = 1  管制 type =2 事故 type = 3 施工 type = 4 其他 type = 5
  @State listDate: listItem[] = [
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥360',
      text: '满3500元立减',
      title: '限部分商品使用',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥250',
      text: '满2500元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥200',
      text: '满1800元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥150',
      text: '满1300元立减',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    },
    {
      money: '¥80',
      text: '满800元立减1',
      title: '适用于体验',
      data: '2024.02.23-2024.03.15'
    }
  ]

  aboutToAppear(): void {
    // 请求数据模拟
    this.init()
  }

  changeData(title: string) {
    this.data.clear();
    let that = this;
    setTimeout(() => {
      // hilog.info(0x0000, '数据1', '1')
      // hilog.info(0x0000, '数据2',JSON.stringify(that.listDate))
      // hilog.info(0x0000, '数据3',title)
      for (let i = 0; i <= that.listDate.length; i++) {
        hilog.info(0x0000, '数据4', JSON.stringify(that.listDate[i]))
        let listDate: listItem = that.listDate[i] as listItem;
        if (listDate?.title?.indexOf(title) !== -1) {
          that.data.pushData(new StringData(listDate?.money, listDate?.text, listDate?.title, listDate?.data));
        }
      }
      this.data.reloadData();
      this.highSheepNum = this.data.totalCount()
      hilog.info(0x0000, '组件加载2', JSON.stringify(this.data))

    }, 500)

  }

  build() {
    Column() {
      Tabs({ barPosition: BarPosition.Start }) {
        TabContent() {
          this.highSpeedBuilder()
        }.tabBar(this.TabRoadBuilder(0, '优惠券', this.highSheepNum))

        TabContent() {
          this.highSpeedBuilder()
        }.tabBar(this.TabRoadBuilder(1, '用于体验', this.tollStationNum))
      }
      .barWidth('100%')
      .scrollable(false)
      .vertical(false)
      .barHeight(40)
      .width('100%')
      .onChange((index: number) => {
        this.currentIndex = index;
        this.changeData('体验')

        if (index == 1) {
          // this.getStationEvent()
        } else if (index == 2) {
          // this.getServiceEvent()

          // this.getEventListIntroduc()
        }
      })
      .width('100%')
      .height('100%')
      .backgroundColor('#ffffff')
    }.width('100%').height('100%')

  }

  @Builder
  TabRoadBuilder(index: number, name: string, num: number) {
    Column() {
      Text(name + '(' + num + ')')
        .fontColor(this.currentIndex === index ? '#015DFF' : '#999999')
        .fontSize(16)
        .fontWeight(this.currentIndex === index ? 500 : 400)
        .lineHeight(22)
        .margin({ top: 6, bottom: 6 })

      Divider().strokeWidth(3).color(this.currentIndex === index ? '#015DFF' : '#999999').width(24)
    }.width('100%')
  }

  @Builder
  highSpeedBuilder() {
    Column() {
      Flex({ justifyContent: FlexAlign.SpaceAround }) {
        ForEach(this.highSheepArray, (item: highSheepItem) => {
          replayComp({
            item: item,
            changeData: this.changeData.bind(this),
            highSheepCur: $highSheepCur
          })
        }, (item: highSheepItem) => item.title)
      }
      .padding({
        left: 10,
        right: 10,
        bottom: 12,
        top: 12
      })
      .width('100%')

      Text(this.title)
        .fontSize(18)
        .fontWeight(FontWeight.Bold)
        .fontFamily('Arial')
      Row() {
        TextInput({ placeholder: '请输入优惠码' })
          .width('75%')
          .fontColor(Color.Blue)
          .fontSize(14)
          .fontStyle(FontStyle.Italic)
          .fontWeight(FontWeight.Bold)
          .fontFamily('Arial')
          .placeholderColor(0x999999)
          .placeholderFont({
            size: 16,
            weight: FontWeight.Medium,
            family: 'cursive',
            style: FontStyle.Italic
          })

        Button('筛选', { type: ButtonType.Normal, stateEffect: true })
          .width('25%')
          .fontSize(14)
          .fontWeight(FontWeight.Medium)
          .backgroundColor('#cccccc')
          .borderRadius(5)
          .onClick(() => {


          })
      }
      .padding({ top: 35, bottom: 10 })

      Row() {
        Text(`您有${this.highSheepNum}张优惠券可领用~`)
          .fontSize(12)
          .textAlign(TextAlign.End)
        Text('>')
      }
      .margin({ bottom: 10 })

      List({ space: 10 }) {
        LazyForEach(this.data, (item: listItem) => {
          ListItem() {
            Row() {
              Column() {
                Text(item.money)
                  .margin({ top: 20, bottom: 20 })
                  .fontColor('#f9f4d7')
                  .borderRadius(5)
                Text(item.text)
                  .textAlign(TextAlign.Center)
                  .fontSize(12)
                  .fontColor('#f9f4d7')
                  .borderRadius(5)
              }
              .width('30%')
              .height(100)
              .backgroundColor('#fe6a48')

              Column() {
                Row() {
                  Text(item.title)
                    .textAlign(TextAlign.Start)
                    .margin({ top: 15, left: -110, bottom: 40 })
                }

                Row() {
                  Text(item.data)
                    .fontSize(10)
                    .margin({ left: -5, right: 25 })
                  Button('去使用', { type: ButtonType.Capsule })
                    .width('32%')
                    .height(20)
                    .fontSize(12)
                    .fontColor('#f6a200')
                    .backgroundColor('#cccccc')
                    .borderColor('#f6a200')
                }
              }
              .width('70%')
              .height(100)
              .backgroundColor('#fff')
            }.onAppear(() => {
              // hilog.info(0x0000, '组件加载', item.title)
              // hilog.info(0x0000, '组件加载1', JSON.stringify(this.data.totalCount()))
            })
          }
        }, (item: listItem) => item.title)
      }
    }
    .padding(12)
    .height('100%')
    .backgroundColor(0xF1F3F5)
  }

  @Builder
  tollStationsBuilder() {
    Column() {
      Text('测试')
    }
  }

  init() {
    for (let i = 0; i < this.listDate.length; i++) {
      // hilog.info(0x0000, '循环',this.listDate[i].title)
      this.data.pushData(new StringData(this.listDate[i].money, this.listDate[i].text, this.listDate[i].title,
        this.listDate[i].data));
    }
    this.highSheepNum = this.data.totalCount()
    this.Statistics()
    // console.log(JSON.stringify(this.data),'[Log]')
  }

  Statistics() {
    let controlNum: number = 0; //商品
    let congestionNum: number = 0; //体验
    for (let i = 0; i < this.listDate.length; i++) {
      if (this.listDate[i].title?.indexOf('商品') !== -1) {
        controlNum++
      }
      if (this.listDate[i].title?.indexOf('体验') !== -1) {
        congestionNum++
      }
    }
    for (let j = 0; j < this.highSheepArray.length; j++) {
      if (this.highSheepArray[j].title == '全部') {
        this.highSheepArray[j].number = this.highSheepNum
      }
      if (this.highSheepArray[j].title == '商品') {
        this.highSheepArray[j].number = controlNum
      }
      if (this.highSheepArray[j].title == '体验') {
        this.highSheepArray[j].number = congestionNum
      }

    }
  }
}

@Component
struct replayComp {
  @ObjectLink item: highSheepItem
  @Link highSheepCur: number
  @State selectedFontColor: string = '#015DFF'
  changeData = (title: string, highSheepCur: number) => {
  }

  build() {
    Column() {
      Text(this.item.title + '(' + this.item.number + ')')
        .fontSize(14)
        .fontColor(this.highSheepCur == this.item.index ? '#015DFF' : '#999999')
        .fontWeight(this.highSheepCur === this.item.index ? 500 : 400)
        .margin({ bottom: 6 })
      Divider()
        .strokeWidth(3)
        .color(this.highSheepCur === this.item.index ? this.selectedFontColor : Color.White)
        .width(24)

    }.onClick(() => {
      this.highSheepCur = this.item.index;
      this.changeData(this.item.title, this.highSheepCur)
      // 1、想在这里面触发父级的方法changeData 怎么触发
      // 2、点击的时候怎么能做到切换样式
    })
  }
}

@Observed
class highSheepItem {
  index: number
  title: string
  code: string
  number: number
  ischeck: boolean

  constructor(index: number, title: string, code: string, number: number, ischeck: boolean) {
    this.index = index
    this.title = title
    this.code = code
    this.number = number
    this.ischeck = ischeck
  }
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.
  • 152.
  • 153.
  • 154.
  • 155.
  • 156.
  • 157.
  • 158.
  • 159.
  • 160.
  • 161.
  • 162.
  • 163.
  • 164.
  • 165.
  • 166.
  • 167.
  • 168.
  • 169.
  • 170.
  • 171.
  • 172.
  • 173.
  • 174.
  • 175.
  • 176.
  • 177.
  • 178.
  • 179.
  • 180.
  • 181.
  • 182.
  • 183.
  • 184.
  • 185.
  • 186.
  • 187.
  • 188.
  • 189.
  • 190.
  • 191.
  • 192.
  • 193.
  • 194.
  • 195.
  • 196.
  • 197.
  • 198.
  • 199.
  • 200.
  • 201.
  • 202.
  • 203.
  • 204.
  • 205.
  • 206.
  • 207.
  • 208.
  • 209.
  • 210.
  • 211.
  • 212.
  • 213.
  • 214.
  • 215.
  • 216.
  • 217.
  • 218.
  • 219.
  • 220.
  • 221.
  • 222.
  • 223.
  • 224.
  • 225.
  • 226.
  • 227.
  • 228.
  • 229.
  • 230.
  • 231.
  • 232.
  • 233.
  • 234.
  • 235.
  • 236.
  • 237.
  • 238.
  • 239.
  • 240.
  • 241.
  • 242.
  • 243.
  • 244.
  • 245.
  • 246.
  • 247.
  • 248.
  • 249.
  • 250.
  • 251.
  • 252.
  • 253.
  • 254.
  • 255.
  • 256.
  • 257.
  • 258.
  • 259.
  • 260.
  • 261.
  • 262.
  • 263.
  • 264.
  • 265.
  • 266.
  • 267.
  • 268.
  • 269.
  • 270.
  • 271.
  • 272.
  • 273.
  • 274.
  • 275.
  • 276.
  • 277.
  • 278.
  • 279.
  • 280.
  • 281.
  • 282.
  • 283.
  • 284.
  • 285.
  • 286.
  • 287.
  • 288.
  • 289.
  • 290.
  • 291.
  • 292.
  • 293.
  • 294.
  • 295.
  • 296.
  • 297.
  • 298.
  • 299.
  • 300.
  • 301.
  • 302.
  • 303.
  • 304.
  • 305.
  • 306.
  • 307.
  • 308.
  • 309.
  • 310.
  • 311.
  • 312.
  • 313.
  • 314.
  • 315.
  • 316.
  • 317.
  • 318.
  • 319.
  • 320.
  • 321.
  • 322.
  • 323.
  • 324.
  • 325.
  • 326.
  • 327.
  • 328.
  • 329.
  • 330.
  • 331.
  • 332.
  • 333.
  • 334.
  • 335.
  • 336.
  • 337.
  • 338.
  • 339.
  • 340.
  • 341.
  • 342.
  • 343.
  • 344.
  • 345.
  • 346.
  • 347.
  • 348.
  • 349.
  • 350.
  • 351.
  • 352.
  • 353.
  • 354.
  • 355.
  • 356.
  • 357.
  • 358.
  • 359.
  • 360.
  • 361.
  • 362.
  • 363.
  • 364.
  • 365.
  • 366.
  • 367.
  • 368.
  • 369.
  • 370.
  • 371.
  • 372.
  • 373.
  • 374.
  • 375.
  • 376.
  • 377.
  • 378.
  • 379.
  • 380.
  • 381.
  • 382.
  • 383.
  • 384.
  • 385.
  • 386.
  • 387.
  • 388.
  • 389.
  • 390.
  • 391.
  • 392.
  • 393.
  • 394.
  • 395.
  • 396.
  • 397.
  • 398.
  • 399.
  • 400.
  • 401.
  • 402.
  • 403.
  • 404.
  • 405.
  • 406.
  • 407.
  • 408.
  • 409.
  • 410.
  • 411.
  • 412.
  • 413.
  • 414.
  • 415.
  • 416.
  • 417.
  • 418.
  • 419.
  • 420.
  • 421.
  • 422.
  • 423.
  • 424.
  • 425.
  • 426.
  • 427.
  • 428.
  • 429.
  • 430.
  • 431.
  • 432.
  • 433.
  • 434.
  • 435.
  • 436.
  • 437.
  • 438.
  • 439.
  • 440.
  • 441.
  • 442.
  • 443.
  • 444.
  • 445.
  • 446.
  • 447.
  • 448.
  • 449.
  • 450.
  • 451.
  • 452.
  • 453.
  • 454.
  • 455.
  • 456.
  • 457.
  • 458.
  • 459.
  • 460.
  • 461.
  • 462.
  • 463.
  • 464.
  • 465.
  • 466.
  • 467.
  • 468.
  • 469.
  • 470.
  • 471.
  • 472.
  • 473.
  • 474.
  • 475.
  • 476.
  • 477.
  • 478.
  • 479.
  • 480.
  • 481.
  • 482.
  • 483.
  • 484.
  • 485.
  • 486.
  • 487.
  • 488.
  • 489.
  • 490.
  • 491.
  • 492.
  • 493.
  • 494.
  • 495.
  • 496.
  • 497.
  • 498.
  • 499.
  • 500.
  • 501.
  • 502.
  • 503.
  • 504.
  • 505.
  • 506.
  • 507.
  • 508.
  • 509.
  • 510.
  • 511.
  • 512.
  • 513.
  • 514.
  • 515.
  • 516.
  • 517.
  • 518.
  • 519.
  • 520.
  • 521.
  • 522.
  • 523.
  • 524.
  • 525.
  • 526.
  • 527.
  • 528.
  • 529.
  • 530.
  • 531.
  • 532.
  • 533.
  • 534.
  • 535.
  • 536.
  • 537.
  • 538.
  • 539.
  • 540.
  • 541.
  • 542.
  • 543.
  • 544.
  • 545.
  • 546.
  • 547.
  • 548.
  • 549.
  • 550.
  • 551.
  • 552.
  • 553.
  • 554.
  • 555.
  • 556.
  • 557.
  • 558.
  • 559.
  • 560.
  • 561.
  • 562.
  • 563.
  • 564.
  • 565.
  • 566.
  • 567.
  • 568.
  • 569.
  • 570.
  • 571.
  • 572.
  • 573.
  • 574.
  • 575.
  • 576.
  • 577.
  • 578.
  • 579.
  • 580.
  • 581.
  • 582.
  • 583.
  • 584.
  • 585.
  • 586.
  • 587.
  • 588.
  • 589.
  • 590.
  • 591.
  • 592.
  • 593.
  • 594.
  • 595.
  • 596.
  • 597.
  • 598.
  • 599.
  • 600.
  • 601.
  • 602.
  • 603.
  • 604.
  • 605.
分享
微博
QQ
微信
回复
2024-12-25 15:19:03


相关问题
组件调用组件方法
2077浏览 • 1回复 待解决
组件调用组件方法
989浏览 • 1回复 待解决
HarmonyOS 组件怎么调用组件方法
1047浏览 • 1回复 待解决
HarmonyOS 组件调用组件方法demo
705浏览 • 1回复 待解决
HarmonyOS 组件调用组件方法
741浏览 • 1回复 待解决
组件如何处理组件内点击事件
3368浏览 • 1回复 待解决