|
@@ -49,9 +49,9 @@
|
|
|
<div class="host-collect" v-if="reportInfo.IsResearch">
|
|
|
<h4>相关热门收藏:</h4>
|
|
|
<div class="host-content" v-for="item in reportResearch" :key="item.ArticleId">
|
|
|
- <p class="host-title">{{ item.Title }}</p>
|
|
|
+ <p class="host-title" @click="goDetail(item)">{{ item.Title }}</p>
|
|
|
<div class="item-more">
|
|
|
- <p @click="goDetail(item)">{{ item.PublishDate }}</p>
|
|
|
+ <p>{{ item.PublishDate }}</p>
|
|
|
<div class="pv-ollect">
|
|
|
<div>
|
|
|
<img class="pv" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/examine_icon.png" />
|
|
@@ -244,7 +244,7 @@ const collectHandle = () => {
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
-/* 文章相关热门挑战 */
|
|
|
+/* 文章相关热门跳转 */
|
|
|
const goDetail = (item) => {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
url: "/pageMy/reportDetail/reportDetail?id=" + item.ArticleId,
|