liyubing

feat:1)公共跳转地方添加频道跳转功能

... ... @@ -38,6 +38,10 @@ export class ContentConstants {
*/
static readonly TYPE_NINE: string = "9";
/**
* 11:频道跳转
*/
static readonly TYPE_CHANNEL: string = "11";
/**
* 13:音频详情
*/
static readonly TYPE_AUDIO: string = "13";
... ...
... ... @@ -134,6 +134,10 @@ export class ProcessUtils {
// 专题详情,跳转h5
ProcessUtils.gotoSpecialTopic(content);
break;
case ContentConstants.TYPE_CHANNEL:
// 频道跳转
HomeChannelUtils.jumpChannelTab(content.objectId, content.pageId, content.newsTitle)
break;
//动态详情页(动态图文)
case ContentConstants.TYPE_FOURTEEN:
ProcessUtils.gotoDynamicDetailPage(content);
... ...