|
@@ -11,7 +11,7 @@
|
|
<div class="comment-box">
|
|
<div class="comment-box">
|
|
<div class="view-box view-top">
|
|
<div class="view-box view-top">
|
|
<span class="user-name">{{ i.nickName || $t('tag.unkownUser') }}</span>
|
|
<span class="user-name">{{ i.nickName || $t('tag.unkownUser') }}</span>
|
|
- <i class="iconfont icon-del" v-if="i.userId == userId" @click="delComment({ commentId: i.commentId, index })"></i>
|
|
|
|
|
|
+ <i class="iconfont icon-comment_delete" v-if="i.userId == userId" @click="delComment({ commentId: i.commentId, index })"></i>
|
|
</div>
|
|
</div>
|
|
<div class="view-box view-middle">
|
|
<div class="view-box view-middle">
|
|
<span class="comment-text">{{ i.content }}</span>
|
|
<span class="comment-text">{{ i.content }}</span>
|
|
@@ -26,7 +26,7 @@
|
|
<div class="reply-box">
|
|
<div class="reply-box">
|
|
<div class="view-box view-top">
|
|
<div class="view-box view-top">
|
|
<span class="user-name">{{ j.nickName || $t('tag.unkownUser') }}</span>
|
|
<span class="user-name">{{ j.nickName || $t('tag.unkownUser') }}</span>
|
|
- <i class="iconfont icon-del" v-if="j.userId == userId" @click="delComment({ commentId: j.commentId, index: j_index, parentIndex: index })"></i>
|
|
|
|
|
|
+ <i class="iconfont icon-comment_delete" v-if="j.userId == userId" @click="delComment({ commentId: j.commentId, index: j_index, parentIndex: index })"></i>
|
|
</div>
|
|
</div>
|
|
<div class="view-box view-middle">
|
|
<div class="view-box view-middle">
|
|
<span class="reply-text"
|
|
<span class="reply-text"
|