ContentConstants.ets 1017 Bytes
export class ContentConstants {
  /* content#objectType,跳转类型:0:不跳转 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14动态图文,15动态视频 */
  /**
   * 0:不跳转
   */
  static readonly TYPE_NONE: string = "0";
  /**
   * 1:点播
   */
  static readonly TYPE_VOD: string = "1";
  /**
   * 2:直播
   */
  static readonly TYPE_LIVE: string = "2";
  /**
   * 5:专题详情
   */
  static readonly TYPE_SPECIAL_TOPIC: string = "5";

  /**
   * 6:链接
   */
  static readonly TYPE_LINK: string = "6";

  /**
   * 8:图文详情,这里是h5页面
   */
  static readonly TYPE_TELETEXT: string = "8";
  /**
   * 9:图集
   */
  static readonly TYPE_NINE: string = "9";
  /**
   * 13:音频详情
   */
  static readonly TYPE_AUDIO: string = "13";

  /**
   * 14:动态图文
   */
  static readonly TYPE_FOURTEEN: string = "14";

  /**
   * 15:动态视频
   */
  static readonly TYPE_FIFTEEN: string = "15";


}