Tab22Bean.ets 960 Bytes
/**
 * NAV_BAR-22
 * 播放详情底部tab
 */
import { ItemBean } from './ItemBean';
import { Tab22DTO } from './Tab22DTO';

@Observed
export class Tab22Bean extends ItemBean {
  tabText: string; // 详情/讨论/(热播榜-特惠-抽周边-有奖征集)/(赛程-热门直播)
  tabType: string; // detail/discuss/H5Page/nativePage
  selectedColor?: string;
  unselectedColor?: string;
  // showCommentCount?: string;
  backgroundColor?: string;
  // backgroundImg?: string;
  // bottomBarBackgroundImg?: string;
  // bottomBarIconUnselectedColor?: string;
  // bottomBarIconSelectedColor?: string;
  // bottomBarBackgroundColor?: string;

  normalTextColor?: string = "";
  activeTextColor?: string = "";

  constructor(dto: Tab22DTO) {
    super(dto);
    this.tabText = dto.tabText
    this.tabType = dto.tabType
    this.selectedColor = dto.selectedColor
    this.unselectedColor = dto.unselectedColor
    this.backgroundColor = dto.backgroundColor
  }
}