mirror of
https://gitee.com/qingqing-coconut-tea/RcKtFezyRAZX
synced 2026-07-21 10:32:32 +08:00
34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
<!-- components/comment-item/comment-item.wxml -->
|
||
<!-- 评论项组件 -->
|
||
|
||
<view class="comment-item">
|
||
<image class="avatar" src="{{comment.avatar || '/static/images/default-avatar.png'}}" bindtap="onAvatarTap" />
|
||
<view class="content">
|
||
<view class="header">
|
||
<text class="nickname">{{comment.nickname}}</text>
|
||
<text class="time">{{comment.createTime}}</text>
|
||
</view>
|
||
<text class="text">{{comment.content}}</text>
|
||
<view class="article-info" wx:if="{{showArticle && comment.articleTitle}}" bindtap="onArticleTap">
|
||
<text class="iconfont icon-article"></text>
|
||
<text class="article-title">{{comment.articleTitle}}</text>
|
||
</view>
|
||
<view class="actions">
|
||
<view class="action-btn" bindtap="onLike">
|
||
<text class="iconfont {{comment.isLiked ? 'icon-like-fill' : 'icon-like'}}"></text>
|
||
<text>{{comment.likeCount || 0}}</text>
|
||
</view>
|
||
<view class="action-btn" bindtap="onReply">
|
||
<text class="iconfont icon-comment"></text>
|
||
<text>回复</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
/**
|
||
* @联系作者:16768118056
|
||
* @描述:(此项目非免费分享)源码百分百可用,搞定毕设不发愁,支持远程调试安装、二次开发、定制、讲解、文档类。
|
||
* @访问:https://www.notmaker.com/detail/8326a897119d4542896c863a69d7bbe7/gtt20260415,查看完整运行演示。
|
||
*/
|