|
@@ -12,16 +12,18 @@
|
|
|
<div class="client-content-box" v-html="infoData.content"></div>
|
|
|
<div class="client-details-pagination">
|
|
|
<a v-show="infoData.lastId" :href="`${baseUrl}/news/${infoData.lastId}`">
|
|
|
- <span @click.prevent="changeNews(infoData.lastId)" :title="'上一篇:'+infoData.lastName">上一篇:{{infoData.lastName}}</span>
|
|
|
+ <span class="mta-hidden-xs" @click.prevent="changeNews(infoData.lastId)" :title="'上一篇:'+infoData.lastName">上一篇:{{infoData.lastName}}</span>
|
|
|
+ <span class="mta-hidden-sm details-phone-btn" @click.prevent="changeNews(infoData.lastId)">上一篇</span>
|
|
|
</a>
|
|
|
<a v-show="infoData.nextId" :href="`${baseUrl}/news/${infoData.nextId}`">
|
|
|
- <span @click.prevent="changeNews(infoData.nextId)" :title="'下一篇:'+infoData.nextName">下一篇:{{infoData.nextName}}</span>
|
|
|
+ <span class="mta-hidden-xs" @click.prevent="changeNews(infoData.nextId)" :title="'下一篇:'+infoData.nextName">下一篇:{{infoData.nextName}}</span>
|
|
|
+ <span class="mta-hidden-sm details-phone-btn" @click.prevent="changeNews(infoData.lastId)">下一篇</span>
|
|
|
</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<!-- 最新新闻 -->
|
|
|
- <div class="latest-news-box">
|
|
|
+ <div class="latest-news-box mta-hidden-xs">
|
|
|
<h4>最新新闻</h4>
|
|
|
<ul class="latest-news-list">
|
|
|
<li v-for="(item, index) in newestData" :key="index">
|