FollowListPage.ets 530 Bytes

import { FollowFirstTabsComponent } from 'wdComponent'
import router from '@ohos.router';
import { Params } from 'wdComponent/src/main/ets/repository/bean/Params';

@Entry
@Component
struct FollowListPage {
  @State curIndex: string = '0';

  onPageShow() {
    this.curIndex = router.getParams()?.["index"];
  }

  build() {
    Column() {
      //Tab 详情
      FollowFirstTabsComponent({changeIndex:Number(this.curIndex)})
    }
    .backgroundColor($r('app.color.color_F9F9F9'))
    .height('100%')
    .width('100%')
  }
}