Sfoglia il codice sorgente

麦塔网站客户案例、行业资讯 图片右侧内容区域鼠标悬浮显示小手,并且可以跳转

tanxue 4 anni fa
parent
commit
6bb05fa862

+ 1 - 1
assets/scss/cus-client/cus-client-page.scss

@@ -653,7 +653,7 @@
       // 右侧内容区域
       .newsInfor-content-ul{
         padding: 0 32px;
-        li{margin-bottom: 40px;}
+        li{margin-bottom: 40px;cursor: pointer}
         li:last-child{margin-bottom: 0;}
         //图片
         .newsInfor-img-box{width:318px;height:178px;display: inline-block;margin-right: 32px;border-radius: 8px;overflow: hidden;vertical-align: top;background-repeat: no-repeat;background-size: cover;background-position: center;}

+ 2 - 4
components/news/NewsList.vue

@@ -1,5 +1,5 @@
 <template>
-  <li v-if="newsData">
+  <li v-if="newsData" @click.prevent="checkInfo(newsData)">
     <div class="newsInfor-img-box" :style="{backgroundImage: `url(${newsData.pic || newsInforImg})`}"></div>
     <div class="newsInfor-list-content">
       <h5>{{newsData.title}}</h5>
@@ -7,9 +7,7 @@
       </div>
       <p>{{newsData.intro}}</p>
       <a :href="`${baseUrl}/news/${newsData.code}`" >
-        <span @click.prevent="checkInfo(newsData)">
-          了解更多
-        </span>
+        <span>了解更多</span>
       </a>
 
     </div>