You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.8 KiB
53 lines
1.8 KiB
<!-- 纯净评价列表页 - 无tab,只有列表 -->
|
|
<view class="page">
|
|
|
|
<!-- 自定义列表 -->
|
|
<view class="list-container">
|
|
|
|
<!-- 评价项列表 -->
|
|
<block wx:for="{{evaluations}}" wx:key="id" wx:for-index="idx">
|
|
|
|
<!-- 评价卡片 -->
|
|
<view class="evaluation-card" >
|
|
|
|
<!-- 用户信息行:头像 + 昵称 + 时间 -->
|
|
<view class="user-row">
|
|
<!-- 头像区域(支持图片和文字占位) -->
|
|
<view class="avatar-wrapper">
|
|
<image class="avatar" src="{{item.avatar?baseUrl+item.avatar:'/pages/images/tx.png'}}" mode="aspectFill"></image>
|
|
</view>
|
|
|
|
<!-- 用户信息和时间 -->
|
|
<view class="user-info">
|
|
<view class="name-row">
|
|
<text class="user-name">{{item.nickName?item.nickName:'用户'+idx}}</text>
|
|
<text class="time">{{item.createdAt}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 评价内容 -->
|
|
<view class="content-section">
|
|
<rich-text class="content-text" space="emsp" nodes="{{item.content}}"></rich-text>
|
|
</view>
|
|
|
|
|
|
<!-- 底部装饰线(极简分隔) -->
|
|
<view class="card-footer" wx:if="{{idx < evaluations.length - 1}}">
|
|
<view class="divider"></view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
|
|
<!-- 空状态 -->
|
|
<view class="empty-state" wx:if="{{evaluations.length === 0}}">
|
|
<image class="empty-icon" src="/pages/images/kzt.png" mode="aspectFit"></image>
|
|
<text class="empty-text">暂无评价</text>
|
|
</view>
|
|
|
|
<!-- 加载更多提示 -->
|
|
<view class="load-more" wx:if="{{evaluations.length > 0}}">
|
|
<text class="load-more-text">{{loadMoreText}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|