Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-community-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
杨延青
2019-03-13 11:17:22 +0800
Commit
5cc1b3da94775b5b696c129d7116e68e5b7b46ff
2 parents
d10c07ab
8342182b
Merge branch 'feature/grassV2' into 'release/6.8.7'
fix See merge request
!18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
apps/components/comments/comment-placeholder.js
apps/pages/article/components/article/article-item-comment.vue
apps/components/comments/comment-placeholder.js
View file @
5cc1b3d
...
...
@@ -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
)
=>
{
...
...
apps/pages/article/components/article/article-item-comment.vue
View file @
5cc1b3d
...
...
@@ -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)
};
},
},
...
...
Please
register
or
login
to post a comment