소스 검색

修改了 微路演的分享

bding 1 주 전
부모
커밋
878d5962c9
3개의 변경된 파일3개의 추가작업 그리고 9개의 파일을 삭제
  1. 1 4
      pageMy/myCollection/myCollection.vue
  2. 1 1
      pages-search/indedxSearch/indedxSearch.vue
  3. 1 4
      pages/index/index.vue

+ 1 - 4
pageMy/myCollection/myCollection.vue

@@ -306,15 +306,12 @@ export default {
   onShareAppMessage: function ({ from, target }) {
     if (from === "button") {
       let item = target.dataset.item;
-      let audio_id = item.Type == 1 || item.AudioType == 1 ? item.Id : "";
       // type=2 -- 活动视频 type=3 -- 产业视频
-      let video_id = item.Type == 2 || item.Type == 3 ? item.Id : "";
-      let activity_id = item.Type == 2 && item.ActivityId > 0 ? item.ActivityId : "";
       let title_share = item.AudioTitle || item.Title;
       this.getRecordTracking("我的收藏转发", { ActivityId: item.ActivityId, Id: item.Id, Type: item.Type });
       return {
         title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : title_share,
-        path: "/pages/material/material?topTabsActive=4" + "&audioShareId=" + audio_id + "&videoShareId=" + video_id + "&activityId=" + activity_id,
+        path: "/activityPages/activityDetail/activityDetail?id=" + item.ActivityId,
         imageUrl: item.AudioShareImg || item.ShareImg,
       };
     }

+ 1 - 1
pages-search/indedxSearch/indedxSearch.vue

@@ -466,7 +466,7 @@ export default {
       this.getRecordTracking("搜索转发", { ActivityId: item.ActivityId, Id: item.Id, Type: item.Type });
       return {
         title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : title_share,
-        path: "/pages/material/material?topTabsActive=4" + "&SourceId=" + item.SourceId + "&SourceType=" + item.Type,
+        path: "/activityPages/activityDetail/activityDetail?id=" + item.ActivityId,
         imageUrl: item.AudioShareImg || item.ShareImg,
       };
     } else {

+ 1 - 4
pages/index/index.vue

@@ -491,15 +491,12 @@ export default {
   onShareAppMessage: function ({ from, target }) {
     if (from === "button") {
       let item = target.dataset.item;
-      let audio_id = item.Type == 1 || item.AudioType == 1 ? item.Id : "";
       // type=2 -- 活动视频 type=3 -- 产业视频
-      let video_id = item.Type == 2 || item.Type == 3 ? item.Id : "";
-      let activity_id = item.Type == 2 && item.ActivityId > 0 ? item.ActivityId : "";
       let title_share = item.AudioTitle || item.Title;
       this.getRecordTracking("首页转发", { ActivityId: item.ActivityId, Id: item.Id, Type: item.Type });
       return {
         title: this.isHorzMobile ? "好友向您推荐此内容,上传名片享查研观向免费月卡!" : title_share,
-        path: "/pages/material/material?topTabsActive=4" + "&audioShareId=" + audio_id + "&videoShareId=" + video_id + "&activityId=" + activity_id,
+        path: "/activityPages/activityDetail/activityDetail?id=" + item.ActivityId,
         imageUrl: item.AudioShareImg || item.ShareImg,
       };
     } else {