陈剑华

Merge remote-tracking branch 'origin/main'

@@ -222,6 +222,7 @@ export class ProcessUtils { @@ -222,6 +222,7 @@ export class ProcessUtils {
222 ProcessUtils.gotoThemeListPage(content) 222 ProcessUtils.gotoThemeListPage(content)
223 break; 223 break;
224 default: 224 default:
  225 + ToastUtils.shortToast('敬请期待')
225 break; 226 break;
226 } 227 }
227 } 228 }
@@ -423,20 +424,22 @@ export class ProcessUtils { @@ -423,20 +424,22 @@ export class ProcessUtils {
423 Logger.debug(TAG, `gotoLive, ${content.objectId}`); 424 Logger.debug(TAG, `gotoLive, ${content.objectId}`);
424 } 425 }
425 426
  427 + //音频详情页
426 public static gotoAudio(content: ContentDTO) { 428 public static gotoAudio(content: ContentDTO) {
427 - let taskAction: Action = {  
428 - type: 'JUMP_DETAIL_PAGE',  
429 - params: {  
430 - detailPageType: 13,  
431 - contentID: content?.objectId,  
432 - extra: {  
433 - relType: content?.relType,  
434 - relId: content?.relId,  
435 - } as ExtraDTO,  
436 - targetLayout: content.customParamTargetLayout  
437 - } as Params,  
438 - };  
439 - WDRouterRule.jumpWithAction(taskAction) 429 + ToastUtils.shortToast('该音频类型暂不支持')
  430 + // let taskAction: Action = {
  431 + // type: 'JUMP_DETAIL_PAGE',
  432 + // params: {
  433 + // detailPageType: 13,
  434 + // contentID: content?.objectId,
  435 + // extra: {
  436 + // relType: content?.relType,
  437 + // relId: content?.relId,
  438 + // } as ExtraDTO,
  439 + // targetLayout: content.customParamTargetLayout
  440 + // } as Params,
  441 + // };
  442 + // WDRouterRule.jumpWithAction(taskAction)
440 Logger.debug(TAG, `gotoAudio, ${content.objectId}`); 443 Logger.debug(TAG, `gotoAudio, ${content.objectId}`);
441 } 444 }
442 445