Authored by 杨延青

Merge branch 'feature/grassV2' into 'release/6.8.7'

fix



See merge request !18
... ... @@ -36,7 +36,7 @@ export default {
const user = await this.$sdk.getUser();
if (user && user.uid) {
const hint = this.user ? `回复${this.user}:` : '评论:';
const hint = this.user ? `回复 ${this.user}:` : '写评论...';
if (this.$yoho.isYohoBuy) {
this.$yoho.getInput({hint}, (content) => {
... ...
... ... @@ -25,7 +25,7 @@
:pos-id="posId"
:column-type="1001"
@on-comment="onComment">
添加评论
添加评论...
</CommentPlaceholder>
</div>
<div class="total-comment">
... ... @@ -61,7 +61,7 @@ export default {
},
invisibleClass() {
return {
invisible: this.thumb || (this.articleState.commentCount < 2)
invisible: this.thumb || (this.articleState.commentCount <= 2)
};
},
},
... ...