Authored by yyq

feix

... ... @@ -21,7 +21,7 @@
:add-type="0"
:column-type="1001"
@on-comment="onComment">
添加回复:赞美是一种美德
添加评论
</CommentPlaceholder>
</div>
<div class="total-comment">
... ... @@ -55,7 +55,7 @@ export default {
},
invisibleClass() {
return {
invisible: this.thumb
invisible: this.thumb || (this.articleState.commentCount < 2)
};
},
},
... ...
... ... @@ -13,8 +13,8 @@
</span>
</template>
</Slide>
<div class="pages">
{{slideIndex}}<span class="small">/{{data.blockList.length}}</span>
<div class="pages" v-if="data.blockList.length > 1">
{{slideIndex}}<span>/</span>{{data.blockList.length}}
</div>
</div>
</template>
... ... @@ -168,16 +168,13 @@ export default {
height: 54px;
background: rgba($color: #000, $alpha: 0.5);
border-radius: 0 0 0 30px;
padding-left: 6px;
color: #fff;
font-size: 28px;
font-size: 24px;
box-sizing: border-box;
display: flex;
line-height: 24px;
justify-content: center;
align-items: center;
.small {
transform: scale(0.7);
padding-top: 3PX;
}
}
</style>
... ...