zhenghy

Merge remote-tracking branch 'origin/main'

... ... @@ -82,7 +82,7 @@ export function viewBlogInsightIntentShare(context: common.UIAbilityContext, ent
}
}
//ViewBlog意图共享-节目详情 目前单独在详情页上报
//ViewBlog意图共享-节目详情 详情页上报
export function viewBlogItemInsightIntentShare(context: common.UIAbilityContext, item: ContentDetailDTO,
interactData?: InteractDataDTO) {
let identifier = generateUUID()
... ... @@ -162,4 +162,4 @@ export function viewColumInsightIntentShare(context: common.UIAbilityContext, en
}).catch((err: BusinessError) => {
console.error(`yzl failed because ${err?.message}`);
});
}
}
\ No newline at end of file
... ...
... ... @@ -45,10 +45,10 @@ export default class InsightIntentExecutorImpl extends InsightIntentExecutor {
console.log('yzl jumpToView',JSON.stringify(param))
return new Promise((resolve, reject) => {
// TODO 实现意图调用,loadContent的入参为歌曲落地页路径,例如:pages/SongPage
// TODO 热启动是否切到主页
pageLoader.loadContent('pages/MainPage')
.then(() => {
let entityGroupId: string = (param.items as Array<object>)?.[0]?.['entityGroupId'];
ProcessUtils.jumpChannelTab(entityGroupId,'')
resolve({
code: 0,
result: {
... ... @@ -68,7 +68,7 @@ export default class InsightIntentExecutorImpl extends InsightIntentExecutor {
}
/**
* 实现事件推荐功能
* 实现事件推荐功能-打开早晚报
* @param param 意图参数
* @param pageLoader 窗口
*/
... ... @@ -77,7 +77,7 @@ export default class InsightIntentExecutorImpl extends InsightIntentExecutor {
return new Promise((resolve, reject) => {
pageLoader.loadContent('pages/MainPage')
.then(() => {
// TODO 事件推荐调用
ProcessUtils.gotoMorningEveningPaper()
resolve({
code: 0,
result: {
... ...