23 lines
812 B
Plaintext
23 lines
812 B
Plaintext
![]() |
|
||
|
<!-- 顶部导航栏 -->
|
||
|
|
||
|
<!-- 评价列表 -->
|
||
|
<view class="reviews-list">
|
||
|
<block wx:for="{{reviews}}" wx:key="index">
|
||
|
<view class="review-item">
|
||
|
<view class="user-info">
|
||
|
<view class="username">{{item.username}}</view>
|
||
|
<view class="rating">
|
||
|
<block wx:for="{{item.rating}}" wx:key="star">
|
||
|
<image class="star" src="/data/image/star.webp" mode="widthFix"></image>
|
||
|
</block>
|
||
|
<block wx:for="{{5 - item.rating}}" wx:key="emptyStar">
|
||
|
<image class="star" src="/data/image/star.webp" mode="widthFix"></image>
|
||
|
</block>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="comment">{{item.comment}}</view>
|
||
|
<view class="timestamp">{{item.timestamp}}</view>
|
||
|
</view>
|
||
|
</block>
|
||
|
</view>
|