...
|
...
|
@@ -4,7 +4,7 @@ |
|
|
<div v-for="editorial in editorialList" class="editorial-box">
|
|
|
<div class="img">
|
|
|
<a href='{{"/editorial/" + editorial.id + ".html"}}'>
|
|
|
<img v-lazy="editorial.src | resize 750 470" alt="" />
|
|
|
<img v-lazy="editorial.src | resize 750 469" alt="" />
|
|
|
</a>
|
|
|
</div>
|
|
|
<div class="title"><a class="line-clamp-2" href='{{"/editorial/" + editorial.id + ".html"}}'>{{editorial.title}}</a></div>
|
...
|
...
|
@@ -37,7 +37,8 @@ |
|
|
|
|
|
.title {
|
|
|
background: #fff;
|
|
|
font-size: 32px;
|
|
|
font-size: 42px;
|
|
|
line-height: 43px;
|
|
|
font-weight: 700;
|
|
|
padding: 10px 20px;
|
|
|
}
|
...
|
...
|
@@ -45,7 +46,9 @@ |
|
|
.editorial-des {
|
|
|
background: #fff;
|
|
|
padding: 10px 20px;
|
|
|
color: #939393;
|
|
|
color: #b0b0b0;
|
|
|
font-size: 28px;
|
|
|
line-height: 32px;
|
|
|
}
|
|
|
|
|
|
hr {
|
...
|
...
|
@@ -56,7 +59,8 @@ |
|
|
.bottom {
|
|
|
padding: 10px 20px;
|
|
|
background: #fff;
|
|
|
color: #939393;
|
|
|
color: #b0b0b0;
|
|
|
font-size: 24px;
|
|
|
|
|
|
.share {
|
|
|
float: right;
|
...
|
...
|
@@ -120,7 +124,7 @@ |
|
|
},
|
|
|
|
|
|
/* 分享资讯 */
|
|
|
share(title, des, img, url) {
|
|
|
share(title, des, img, id) {
|
|
|
img = util.getImgUrl(img, 300, 300, 2);
|
|
|
yoho.goShare({
|
|
|
title: title,
|
...
|
...
|
|