意图框架参数跳转【isPublicData这个字段从必选改为可选了,而且类型从原来的boolean改成了integer,如果需要填写,写0或者1,不需要的话直接删除。】
Showing
1 changed file
with
3 additions
and
6 deletions
| @@ -62,8 +62,7 @@ export function viewBlogInsightIntentShare(context: common.UIAbilityContext, ent | @@ -62,8 +62,7 @@ export function viewBlogInsightIntentShare(context: common.UIAbilityContext, ent | ||
| 62 | commentCount: _item?.interactData?.commentNum || 0, | 62 | commentCount: _item?.interactData?.commentNum || 0, |
| 63 | favorites: _item?.interactData?.collectNum || 0, | 63 | favorites: _item?.interactData?.collectNum || 0, |
| 64 | viewCount: _item?.interactData?.readNum || 0, | 64 | viewCount: _item?.interactData?.readNum || 0, |
| 65 | - rankingHint: 99, | ||
| 66 | - isPublicData: true | 65 | + rankingHint: 99 |
| 67 | } | 66 | } |
| 68 | } | 67 | } |
| 69 | insightIntentArray.push(viewBlogInsightIntentItem) | 68 | insightIntentArray.push(viewBlogInsightIntentItem) |
| @@ -113,8 +112,7 @@ export function viewBlogItemInsightIntentShare(context: common.UIAbilityContext, | @@ -113,8 +112,7 @@ export function viewBlogItemInsightIntentShare(context: common.UIAbilityContext, | ||
| 113 | forwardCount: interactData?.shareNum || 0, | 112 | forwardCount: interactData?.shareNum || 0, |
| 114 | commentCount: interactData?.commentNum || 0, | 113 | commentCount: interactData?.commentNum || 0, |
| 115 | favorites: interactData?.collectNum || 0, | 114 | favorites: interactData?.collectNum || 0, |
| 116 | - rankingHint: 99, | ||
| 117 | - isPublicData: true | 115 | + rankingHint: 99 |
| 118 | } | 116 | } |
| 119 | } | 117 | } |
| 120 | 118 | ||
| @@ -147,8 +145,7 @@ export function viewColumInsightIntentShare(context: common.UIAbilityContext, en | @@ -147,8 +145,7 @@ export function viewColumInsightIntentShare(context: common.UIAbilityContext, en | ||
| 147 | activityType: ['RecentViews'], | 145 | activityType: ['RecentViews'], |
| 148 | columnTitle: pageInfoBean?.topicInfo?.title, | 146 | columnTitle: pageInfoBean?.topicInfo?.title, |
| 149 | columnSubTitle: pageInfoBean?.shareSummary, | 147 | columnSubTitle: pageInfoBean?.shareSummary, |
| 150 | - rankingHint: 99, | ||
| 151 | - isPublicData: true | 148 | + rankingHint: 99 |
| 152 | } | 149 | } |
| 153 | } | 150 | } |
| 154 | console.log('yzl viewColumInsightIntentShare', JSON.stringify(viewColumInsightIntentItem)) | 151 | console.log('yzl viewColumInsightIntentShare', JSON.stringify(viewColumInsightIntentItem)) |
-
Please register or login to post a comment