...
|
...
|
@@ -39,11 +39,11 @@ |
|
|
<div class="other-box" v-for="item in other">
|
|
|
<div>
|
|
|
<div class="image-box">
|
|
|
<a :href="`/editorial/${item.id}.html`">
|
|
|
<a :href="'/editorial/' + item.id + '.html'">
|
|
|
<img :src="item.thumb | resize 213 134"/>
|
|
|
</a>
|
|
|
</div>
|
|
|
<h3><a class="line-clamp-2" :href="`/editorial/${item.id}.html`">{{item.title}}</a></h3>
|
|
|
<h3><a class="line-clamp-2" :href="'/editorial/' + item.id + '.html'">{{item.title}}</a></h3>
|
|
|
<div class="sub-time">
|
|
|
<span class="icon icon-timeshare"></span><span class="label">{{article.publishTime | formatUnixTime 'MM.DD HH:mm'}}</span>
|
|
|
</div>
|
...
|
...
|
|