Showing
2 changed files
with
8 additions
and
0 deletions
| @@ -38,6 +38,10 @@ export class ContentConstants { | @@ -38,6 +38,10 @@ export class ContentConstants { | ||
| 38 | */ | 38 | */ |
| 39 | static readonly TYPE_NINE: string = "9"; | 39 | static readonly TYPE_NINE: string = "9"; |
| 40 | /** | 40 | /** |
| 41 | + * 11:频道跳转 | ||
| 42 | + */ | ||
| 43 | + static readonly TYPE_CHANNEL: string = "11"; | ||
| 44 | + /** | ||
| 41 | * 13:音频详情 | 45 | * 13:音频详情 |
| 42 | */ | 46 | */ |
| 43 | static readonly TYPE_AUDIO: string = "13"; | 47 | static readonly TYPE_AUDIO: string = "13"; |
| @@ -134,6 +134,10 @@ export class ProcessUtils { | @@ -134,6 +134,10 @@ export class ProcessUtils { | ||
| 134 | // 专题详情,跳转h5 | 134 | // 专题详情,跳转h5 |
| 135 | ProcessUtils.gotoSpecialTopic(content); | 135 | ProcessUtils.gotoSpecialTopic(content); |
| 136 | break; | 136 | break; |
| 137 | + case ContentConstants.TYPE_CHANNEL: | ||
| 138 | + // 频道跳转 | ||
| 139 | + HomeChannelUtils.jumpChannelTab(content.objectId, content.pageId, content.newsTitle) | ||
| 140 | + break; | ||
| 137 | //动态详情页(动态图文) | 141 | //动态详情页(动态图文) |
| 138 | case ContentConstants.TYPE_FOURTEEN: | 142 | case ContentConstants.TYPE_FOURTEEN: |
| 139 | ProcessUtils.gotoDynamicDetailPage(content); | 143 | ProcessUtils.gotoDynamicDetailPage(content); |
-
Please register or login to post a comment