Authored by 陈峰

css

... ... @@ -3,7 +3,7 @@
<header-box>
<template slot="right">
<a class="right-button no-intercept" @click="like">
<span class="count">{{likeCount ? likeCount : ''}}</span>
<span class="count icon">{{likeCount ? likeCount : ''}}</span>
<span class="icon" :class="{ 'icon-like': !isLiked, 'icon-liked': isLiked}">
</span>
</a>
... ... @@ -37,8 +37,6 @@
.count {
display: inline-block;
vertical-align: text-bottom;
margin-bottom: -8px;
}
}
}
... ...
... ... @@ -89,7 +89,7 @@
</p>
</div>
<div class="group-list swiper-area" v-if="floor.length > 0">
<swipe class="swipe" :style="{height: floorHeight + 'px'}">
<swipe v-if="floor.length > 0" class="swipe" :style="{height: floorHeight + 'px'}">
<swipe-item v-for="item in floor" :key="item.src" :style="{backgroundColor: item.bgColor}">
<a v-blk-href="item.url" :title="item.title" v-if="item.url">
<img v-img-src="{src: item.src, width: floorImgW, height: floorImgH}">
... ...