Tab22DTO.ts
702 Bytes
/**
* NAV_BAR-22
* 播放详情,播放器下面的tab
*/
import { ItemDTO } from './ItemDTO';
export interface Tab22DTO extends ItemDTO {
tabText: string; // 详情/讨论/(热播榜-特惠-抽周边-有奖征集)/(赛程-热门直播)
tabType: string; // detail/discuss/H5Page/nativePage
selectedColor?: string; // TAB项选中文字颜色
unselectedColor?: string; // TAB项未选中文字颜色
showCommentCount?: string; //
backgroundColor?: string; // TAB背景颜色
backgroundImg?: string; // TAB背景图片
bottomBarBackgroundImg?: string;
bottomBarIconUnselectedColor?: string;
bottomBarIconSelectedColor?: string;
bottomBarBackgroundColor?: string;
}