|
@@ -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) {
|