瀏覽代碼

htgj 底部去除

bd 2 年之前
父節點
當前提交
a805687a18
共有 2 個文件被更改,包括 1 次插入69 次删除
  1. 1 41
      src/views/htgj/report.vue
  2. 0 28
      src/views/htgj/strategyDetail.vue

+ 1 - 41
src/views/htgj/report.vue

@@ -35,19 +35,6 @@
       <div class="btn-returntop">
         <img src="~@/assets/cygx/returntop.png" @click="scrolltop" style="width: 40px" />
       </div>
-      <div class="fixed_cont">
-        <div class="handle-item" @click="quizBtn" v-if="reportInfo.IsResearch">
-          <img src="@/assets/cygx/quiz_ico.png" class="img_ico" />
-          <div>提问</div>
-        </div>
-        <div class="handle-item" @click="collectHandle">
-          <img src="@/assets/cygx/collect_act.png" class="img_ico" v-if="reportInfo.IsCollect" />
-          <img src="@/assets/cygx/collect_ico.png" class="img_ico" v-else />
-          <div v-if="reportInfo.IsResearch">
-            {{ `${reportInfo.CollectionNum}  人收藏` }}
-          </div>
-        </div>
-      </div>
       <dlg :showTips="showTips" :reportInfo="reportInfo" @hideDlg="showTips = false" />
     </div>
     <div v-else class="nodata">
@@ -168,35 +155,8 @@ const getReport = (id) => {
   });
 };
 
-//点击到提问页面
-const quizBtn = () => {
-  // wx.miniProgram.navigateTo({
-  //   url: "/activityPages/generationAsk/generationAsk?id=" + state.reportInfo.ArticleId + "&type=文章",
-  // });
-  router.push({
-    path: "/htgj/quiz",
-    query: {
-      id: rerportId.value,
-    },
-  });
-};
 
-/* 收藏 */
-const collectHandle = () => {
-  RaiApi.collectRpt({
-    ArticleId: Number(rerportId.value),
-  }).then((res) => {
-    if (res.Ret === 200) {
-      state.reportInfo.IsCollect = !state.reportInfo.IsCollect;
-      if (res.Data.Status == 2) {
-        state.reportInfo.CollectionNum -= 1;
-      } else {
-        state.reportInfo.CollectionNum += 1;
-      }
-      Toast(res.Msg);
-    }
-  });
-};
+
 
 onMounted(() => {
   if (route.query.id) {

+ 0 - 28
src/views/htgj/strategyDetail.vue

@@ -88,22 +88,6 @@ const interviewApi = () => {
   });
 };
 
-/* 收藏 */
-const collectHandle = () => {
-  RaiApi.collectRpt({
-    ArticleId: Number(rerportId.value),
-  }).then((res) => {
-    if (res.Ret === 200) {
-      state.reportInfo.IsCollect = !state.reportInfo.IsCollect;
-      if (res.Data.Status == 2) {
-        state.reportInfo.CollectionNum -= 1;
-      } else {
-        state.reportInfo.CollectionNum += 1;
-      }
-      Toast(res.Msg);
-    }
-  });
-};
 
 onMounted(() => {
   if (route.query.id) {
@@ -135,18 +119,6 @@ const { reportInfo } = toRefs(state);
         </div>
       </div>
       <iframe class="details-iframe" :src="reportInfo.HttpUrl" frameborder="0" />
-      <div class="fixed_cont">
-        <div class="handle-item" @click="applyHandle" v-if="reportInfo.IsSummary == 1 && !reportInfo.IsResearch">
-          <img src="@/assets/cygx/apply_act.png" class="img_ico" v-if="reportInfo.IsInterviewApply" />
-          <img src="@/assets/cygx/apply_ico.png" class="img_ico" v-else />
-          <div>{{ reportInfo.IsInterviewApply ? "已申请访谈" : "申请访谈" }}</div>
-        </div>
-        <div class="handle-item" @click="collectHandle">
-          <img src="@/assets/cygx/collect_act.png" class="img_ico" v-if="reportInfo.IsCollect" />
-          <img src="@/assets/cygx/collect_ico.png" class="img_ico" v-else />
-          <div>{{ reportInfo.IsCollect ? "已收藏" : "收藏" }}</div>
-        </div>
-      </div>
       <dlg :showTips="showTips" :reportInfo="reportInfo" @hideDlg="showTips = false" />
     </div>
     <div v-else class="nodata">