|
@@ -30,19 +30,15 @@
|
|
|
<p class="time">{{ reportInfo.PublishDate }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div @click="attentionBtn" class="is-follow" :class="reportInfo.IsFollow ? 'follow-cancel' : ''" v-if="isBinding">
|
|
|
+ <div @click="attentionBtn" :style="{ 'background-color': isYanxuan ? '#F1A84A' : '#376CBB' }" class="is-follow" :class="reportInfo.IsFollow ? 'follow-cancel' : ''" v-if="isBinding">
|
|
|
{{ reportInfo.IsFollow ? "取消关注" : "+ 关注" }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <div class="container-abstract"> 摘要: {{ reportInfo.Abstract }}</div>
|
|
|
+ <div :class="['container-abstract', isYanxuan && 'container-abstract-yx']"> 摘要: {{ reportInfo.Abstract }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<template v-if="isBinding">
|
|
|
- <div class="report-link" v-if="fileLink">
|
|
|
- 报告全文:
|
|
|
- <span style="color: #0808e5" @click="downloadFile">(PDF格式报告下载.pdf)</span>
|
|
|
- </div>
|
|
|
<div class="detail-report" :class="reportInfo.IsResearch ? '' : 'detail-bottom'">
|
|
|
<div id="report-content" v-html="reportInfo.Body"></div>
|
|
|
</div>
|
|
@@ -67,12 +63,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <div v-if="reportInfo.IsSpecialArticle" class="statement-content">
|
|
|
- <p class="title">免责声明</p>
|
|
|
- <p class="content">
|
|
|
- 本报告仅供弘则弥道(上海)投资咨询有限公司正式签约的机构客户使用,不会仅因接收人/接受机构收到本报告而将其视为客户。本报告根据国际和行业通行的准则,以合法渠道获得这些信息,尽可能保证可靠、准确和完整,但并不保证报告所述信息的准确性和完整性,也不保证本报告所包含的信息或建议在本报告发出后不会发生任何变更。本报告中所提供的信息仅供参考。报告中的内容不对投资者做出的最终操作建议做任何的担保,也没有任何形式的分享投资收益或者分担投资损失的书面或口头承诺。不作为客户在投资、法律、会计或税务等方面的最终操作建议,也不作为道义的、责任的和法律的依据或者凭证,无论是否已经明示或者暗示。在任何情况下,本公司不对客户/接受人/接受机构因使用报告中内容所引致的一切损失负责任,客户/接受人/接受机构需自行承担全部风险。
|
|
|
- </p>
|
|
|
- </div> -->
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<div class="detail-report" :class="reportInfo.IsResearch ? '' : 'detail-bottom'" v-if="reportInfo.Body">
|
|
@@ -88,7 +78,8 @@
|
|
|
本文章或会议未经本平台和作者的书面许可,任何机构和个人不得以任何形式转发、转载、翻版、复制、刊登、发表、修改、仿制或引用文章或会议的全部或部分内容。本平台对任何第三方的未经授权行为所产生的的影响不承担任何责任,同时保持实施法律行动的权利。
|
|
|
</div>
|
|
|
<div class="btn-returntop" v-if="isBinding">
|
|
|
- <img src="~@/assets/cygx/returntop.png" @click="scrolltop" style="width: 40px" />
|
|
|
+ <img v-if="isYanxuan" src="~@/assets/cygx/returntop_yx.png" @click="scrolltop" style="width: 40px" />
|
|
|
+ <img v-else src="~@/assets/cygx/returntop.png" @click="scrolltop" style="width: 40px" />
|
|
|
</div>
|
|
|
<div class="btn-freecharge" v-if="isShowFreeBtn && from_type == 'mpwechat'">
|
|
|
<img @click="toggle" class="image" src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/free_icon.png" />
|
|
@@ -105,8 +96,12 @@
|
|
|
<div>约访专家</div>
|
|
|
</div>
|
|
|
<div class="handle-item" @click="collectHandle">
|
|
|
- <img src="@/assets/cygx/collect_act.png" class="img_ico" v-if="reportInfo.IsCollect" />
|
|
|
+ <template v-if="reportInfo.IsCollect">
|
|
|
+ <img v-if="isYanxuan" src="https://hzstatic.hzinsights.com/yx_xcx/collect_act.png" />
|
|
|
+ <img src="@/assets/cygx/collect_act.png" class="img_ico" v-else />
|
|
|
+ </template>
|
|
|
<img src="@/assets/cygx/collect_ico.png" class="img_ico" v-else />
|
|
|
+
|
|
|
<div v-if="reportInfo.IsResearch">
|
|
|
{{ `${reportInfo.CollectionNum} 人收藏` }}
|
|
|
</div>
|
|
@@ -138,6 +133,7 @@ const showTips = ref(false);
|
|
|
const contentBox = ref(null);
|
|
|
const isBinding = ref(true);
|
|
|
const isSendWx = ref("");
|
|
|
+const isYanxuan = ref("");
|
|
|
|
|
|
/* 访谈接口 */
|
|
|
const interviewApi = () => {
|
|
@@ -154,7 +150,7 @@ const interviewApi = () => {
|
|
|
//跳转到免费送月卡页面
|
|
|
const toggle = () => {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/pageMy/freeTrial/freeTrial",
|
|
|
+ url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/freeTrial/freeTrial`,
|
|
|
});
|
|
|
};
|
|
|
const isShowFreeBtn = ref(false);
|
|
@@ -176,7 +172,7 @@ const userIsShowFreeButton = async () => {
|
|
|
// 跳转到作者页面
|
|
|
const goAuthorPages = () => {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/reportPages/authorPages/authorPages?id=" + state.reportInfo.DepartmentId,
|
|
|
+ url: `/${isYanxuan.value ? "pages-report" : "reportPages"}/authorPages/authorPages?id=` + state.reportInfo.DepartmentId,
|
|
|
});
|
|
|
};
|
|
|
const downloadFile = async () => {
|
|
@@ -191,7 +187,7 @@ const downloadFile = async () => {
|
|
|
if (res.Ret === 200) {
|
|
|
Toast.clear();
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/pageMy/downloadFile/downloadFile?url=" + res.Data.FileLink,
|
|
|
+ url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/downloadFile/downloadFile?url=` + res.Data.FileLink,
|
|
|
});
|
|
|
}
|
|
|
};
|
|
@@ -255,7 +251,7 @@ const attentionBtn = () => {
|
|
|
})
|
|
|
.then(() => {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/activityPages/accountsOfficial/accountsOfficial",
|
|
|
+ url: `/${isYanxuan.value ? "pages-activity" : "activityPages"}/accountsOfficial/accountsOfficial`,
|
|
|
});
|
|
|
})
|
|
|
.catch(() => {
|
|
@@ -295,7 +291,7 @@ const collectHandle = () => {
|
|
|
/* 文章相关热门跳转 */
|
|
|
const goDetail = (item) => {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/pageMy/reportDetail/reportDetail?id=" + item.ArticleId,
|
|
|
+ url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/reportDetail/reportDetail?id=` + item.ArticleId,
|
|
|
});
|
|
|
};
|
|
|
/* 文章相关热门收藏 */
|
|
@@ -328,20 +324,10 @@ const waterMark = (text) => {
|
|
|
// 将容器的的背景图片设置为生成的base64图片,并平铺
|
|
|
contentBox.value.style.background = "url(" + data + ") repeat";
|
|
|
};
|
|
|
-//点击回到搜索页面
|
|
|
-const btnSearch = () => {
|
|
|
- if (state.reportInfo.IsBelongSummary) {
|
|
|
- wx.miniProgram.navigateTo({ url: "/pageMy/search/search" });
|
|
|
- } else {
|
|
|
- wx.miniProgram.navigateTo({
|
|
|
- url: "/reportPages/reportSearch/reportSearch",
|
|
|
- });
|
|
|
- }
|
|
|
-};
|
|
|
//点击到提问页面
|
|
|
const quizBtn = () => {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/activityPages/generationAsk/generationAsk?id=" + state.reportInfo.ArticleId + "&type=文章",
|
|
|
+ url: `/${isYanxuan.value ? "pages-activity" : "activityPages"}/generationAsk/generationAsk?id=` + state.reportInfo.ArticleId + "&type=文章",
|
|
|
});
|
|
|
};
|
|
|
// 约访专家
|
|
@@ -355,7 +341,7 @@ const appointment = (articleId) => {
|
|
|
message: "约访专家的请求会提醒您的对口销售,确定要发起吗?",
|
|
|
messageAlign: "left",
|
|
|
showCancelButton: true,
|
|
|
- confirmButtonColor: "blue",
|
|
|
+ confirmButtonColor: isYanxuan.value ? "#F1A84A" : "#3385FF",
|
|
|
})
|
|
|
.then(() => {
|
|
|
RaiApi.appointmentExpert({ ArticleId: articleId }).then((res) => {
|
|
@@ -448,19 +434,20 @@ const pleaseGoLogin = () => {
|
|
|
}).then((res) => {
|
|
|
if (res == "confirm") {
|
|
|
wx.miniProgram.navigateTo({
|
|
|
- url: "/pageMy/login/login",
|
|
|
+ url: `/${isYanxuan.value ? "pages-user" : "pageMy"}/login/login`,
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
onMounted(() => {
|
|
|
+ document.title = "报告详情";
|
|
|
if (route.query.id) {
|
|
|
rerportId.value = +route.query.id;
|
|
|
isSendWx.value = route.query.IsSendWx || "";
|
|
|
from_type.value = route.query.fromType;
|
|
|
let access_token = route.query.token || "";
|
|
|
isBinding.value = route.query.isBinding == "true" ? true : false;
|
|
|
- console.log(isBinding.value);
|
|
|
+ isYanxuan.value = route.query.isYanxuan ? true : false;
|
|
|
localStorage.setItem("access_token", access_token);
|
|
|
getReport(rerportId.value, access_token, from_type.value);
|
|
|
userIsShowFreeButton();
|