bding 1 年之前
父节点
当前提交
18f4494a77
共有 3 个文件被更改,包括 18 次插入6 次删除
  1. 二进制
      src/assets/cygx/returntop_yx.png
  2. 8 1
      src/views/cygx/index.scss
  3. 10 5
      src/views/cygx/raiReportDtl.vue

二进制
src/assets/cygx/returntop_yx.png


+ 8 - 1
src/views/cygx/index.scss

@@ -219,6 +219,7 @@
          height: 28px;
          background: #376CBB;
        }
+       
    @media screen and (min-width:790px) {
        margin: 20PX 0 10PX;
        padding-bottom: 20PX;
@@ -234,9 +235,15 @@
          height: 22PX;
          background: #2a65f5;
        }
- }
+    }
+
      }
    }
+   .container-abstract-yx {
+    &::before {
+      background: #F1A84A !important;
+    }
+ }
  }
  .report-link {
    font-size: 28px;

+ 10 - 5
src/views/cygx/raiReportDtl.vue

@@ -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"> &nbsp;免责声明</span></div> -->
-          <div class="container-abstract">&nbsp;&nbsp;摘要:&nbsp;{{ reportInfo.Abstract }}</div>
+          <div :class="['container-abstract', isYanxuan && 'container-abstract-yx']">&nbsp;&nbsp;摘要:&nbsp;{{ 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) => {