Showing
2 changed files
with
3 additions
and
3 deletions
@@ -36,7 +36,7 @@ export default { | @@ -36,7 +36,7 @@ export default { | ||
36 | const user = await this.$sdk.getUser(); | 36 | const user = await this.$sdk.getUser(); |
37 | 37 | ||
38 | if (user && user.uid) { | 38 | if (user && user.uid) { |
39 | - const hint = this.user ? `回复${this.user}:` : '评论:'; | 39 | + const hint = this.user ? `回复 ${this.user}:` : '写评论...'; |
40 | 40 | ||
41 | if (this.$yoho.isYohoBuy) { | 41 | if (this.$yoho.isYohoBuy) { |
42 | this.$yoho.getInput({hint}, (content) => { | 42 | this.$yoho.getInput({hint}, (content) => { |
@@ -25,7 +25,7 @@ | @@ -25,7 +25,7 @@ | ||
25 | :pos-id="posId" | 25 | :pos-id="posId" |
26 | :column-type="1001" | 26 | :column-type="1001" |
27 | @on-comment="onComment"> | 27 | @on-comment="onComment"> |
28 | - 添加评论 | 28 | + 添加评论... |
29 | </CommentPlaceholder> | 29 | </CommentPlaceholder> |
30 | </div> | 30 | </div> |
31 | <div class="total-comment"> | 31 | <div class="total-comment"> |
@@ -61,7 +61,7 @@ export default { | @@ -61,7 +61,7 @@ export default { | ||
61 | }, | 61 | }, |
62 | invisibleClass() { | 62 | invisibleClass() { |
63 | return { | 63 | return { |
64 | - invisible: this.thumb || (this.articleState.commentCount < 2) | 64 | + invisible: this.thumb || (this.articleState.commentCount <= 2) |
65 | }; | 65 | }; |
66 | }, | 66 | }, |
67 | }, | 67 | }, |
-
Please register or login to post a comment