Showing
1 changed file
with
2 additions
and
2 deletions
| @@ -21,7 +21,7 @@ export const enum ActionMode { | @@ -21,7 +21,7 @@ export const enum ActionMode { | ||
| 21 | } | 21 | } |
| 22 | 22 | ||
| 23 | // 上报节目类型白名单 | 23 | // 上报节目类型白名单 |
| 24 | -const shareWhiteist = ['1', '2', '5', '8', '9', '14', '15'] //跳转类型:0:不跳转 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14动态图文,15动态视频 */ | 24 | +const shareWhiteList = ['1', '2', '5', '8', '9', '14', '15'] //跳转类型:0:不跳转 1:点播,2:直播,3:活动,4:广告,5:专题,6:链接,7:榜单,8:图文,9:组图,10:H5新闻,11:频道,12:组件,13:音频,14动态图文,15动态视频 */ |
| 25 | 25 | ||
| 26 | //ViewBlog意图共享-频道列表 | 26 | //ViewBlog意图共享-频道列表 |
| 27 | export function viewBlogInsightIntentShare(context: common.UIAbilityContext, entityGroupId: string, | 27 | export function viewBlogInsightIntentShare(context: common.UIAbilityContext, entityGroupId: string, |
| @@ -32,7 +32,7 @@ export function viewBlogInsightIntentShare(context: common.UIAbilityContext, ent | @@ -32,7 +32,7 @@ export function viewBlogInsightIntentShare(context: common.UIAbilityContext, ent | ||
| 32 | if (compList?.length > 0) { | 32 | if (compList?.length > 0) { |
| 33 | compList?.forEach((comp: CompDTO | CompList) => { | 33 | compList?.forEach((comp: CompDTO | CompList) => { |
| 34 | comp.operDataList.forEach((item: ContentDTO) => { | 34 | comp.operDataList.forEach((item: ContentDTO) => { |
| 35 | - if (shareWhiteist.indexOf(item.objectType) > -1) { | 35 | + if (shareWhiteList.indexOf(item.objectType) > -1) { |
| 36 | let viewBlogInsightIntentItem: insightIntent.InsightIntent = { | 36 | let viewBlogInsightIntentItem: insightIntent.InsightIntent = { |
| 37 | intentName: 'ViewBlog', | 37 | intentName: 'ViewBlog', |
| 38 | intentVersion: '1.0.1', | 38 | intentVersion: '1.0.1', |
-
Please register or login to post a comment