|
@@ -30,13 +30,13 @@
|
|
|
<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 v-if="!reportInfo.IsSpecialArticle">注:请务必阅读<span class="tip" @click="showTips = true"> 免责声明</span></div> -->
|
|
|
- <div class="container-abstract"> 摘要: {{ reportInfo.Abstract }}</div>
|
|
|
+ <div :class="['container-abstract', isYanxuan && 'container-abstract-yx']"> 摘要: {{ reportInfo.Abstract }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<template v-if="isBinding">
|
|
@@ -89,7 +89,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" />
|
|
@@ -106,8 +107,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>
|
|
@@ -347,7 +352,7 @@ const appointment = (articleId) => {
|
|
|
message: "约访专家的请求会提醒您的对口销售,确定要发起吗?",
|
|
|
messageAlign: "left",
|
|
|
showCancelButton: true,
|
|
|
- confirmButtonColor: "blue",
|
|
|
+ confirmButtonColor: isYanxuan.value ? "#F1A84A" : "#3385FF",
|
|
|
})
|
|
|
.then(() => {
|
|
|
RaiApi.appointmentExpert({ ArticleId: articleId }).then((res) => {
|