Tab01Bean.ets 746 Bytes
/**
 * NAV_BAR-01
 * 导航栏(顶导/首页/体育/vip)
 */
import { ItemBean } from './ItemBean';
import { Tab01DTO } from './Tab01DTO';

@Observed
export class Tab01Bean extends ItemBean {
  title: string; // 导航栏标题
  tabImg?: string; // TAB图片
  defaultTextColor?: string; // 导航文字默认颜色
  headBackgroundImg?: string; // 头部背景色(搜索bar背景图片)
  // backgroundImg?: string;
  // actTextColor?: string;

  constructor(dto: Tab01DTO) {
    super(dto);
    this.title = dto.title
    this.tabImg = dto.tabImg
    this.defaultTextColor = dto.defaultTextColor
    this.headBackgroundImg = dto.headBackgroundImg
    // this.backgroundImg = dto.backgroundImg
    // this.actTextColor = dto.actTextColor
  }
}