mirror of
https://gitee.com/qingqing-coconut-tea/RcKtFezyRAZX
synced 2026-07-21 10:32:32 +08:00
38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
<!-- pages/my-comment/my-comment.wxml -->
|
||
<!-- 我的评论视图 -->
|
||
|
||
<view class="my-comment-container">
|
||
<view class="comment-list">
|
||
<view class="comment-item" wx:for="{{commentList}}" wx:key="id">
|
||
<view class="comment-main" bindtap="goToArticle" data-article-id="{{item.articleId}}">
|
||
<view class="article-title">评论文章:{{item.articleTitle}}</view>
|
||
<view class="comment-content">{{item.content}}</view>
|
||
<view class="comment-meta">
|
||
<text class="time">{{item.createTime}}</text>
|
||
<text class="likes">{{item.likeCount}}赞</text>
|
||
</view>
|
||
</view>
|
||
<view class="comment-actions">
|
||
<view class="action-btn delete" bindtap="onDelete" data-id="{{item.id}}">删除</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="loading-more" wx:if="{{loading}}">
|
||
<text>加载中...</text>
|
||
</view>
|
||
<view class="no-more" wx:if="{{!hasMore && commentList.length > 0}}">
|
||
<text>没有更多了</text>
|
||
</view>
|
||
<view class="empty-state" wx:if="{{!loading && commentList.length === 0}}">
|
||
<text class="iconfont icon-comment empty-icon"></text>
|
||
<text class="empty-text">暂无评论</text>
|
||
</view>
|
||
</view>
|
||
|
||
/**
|
||
* @联系作者:16768118056
|
||
* @描述:(此项目非免费分享)源码百分百可用,搞定毕设不发愁,支持远程调试安装、二次开发、定制、讲解、文档类。
|
||
* @访问:https://www.notmaker.com/detail/8326a897119d4542896c863a69d7bbe7/gtt20260415,查看完整运行演示。
|
||
*/
|