yuminge-app/yun-min-program-plugin-master/packageC/mycomponent/comment/comment.wxml

35 lines
1.1 KiB
Plaintext

<view class="sift">
<view class="sift-title">
<text>精选口碑</text>
<view class="tit_a">好评率<text>{{score}}</text>
</view>
<view class="sift-right" catchtap="gotoCommentList">
<text>查看全部({{total}})</text>
<van-icon name="arrow" size='32rpx' />
</view>
</view>
<block wx:if="{{commentInfo&&commentInfo.length>0}}">
<swiper next-margin='140px'>
<block wx:for='{{commentInfo}}' wx:key='index'>
<swiper-item>
<view style="width:400rpx;height:193rpx" class="swiper-kb">
<view class="figure">
<image src="{{item.head_img_url}}" mode='widthFix' />
<view class="figtxt">
<text>{{item.nick_name}}</text>
<van-rate disabled="{{true}}" disabled-color="#ff9900" value="{{item.level}}" size='14' />
</view>
</view>
<view class="figure_right">{{item.content}}</view>
</view>
</swiper-item>
</block>
</swiper>
</block>
<block wx:else>
<view style="width:100%;text-align: center;height:100rpx;line-height:100rpx;color: #7d7e80;">
抱歉,暂无评论 ~
</view>
</block>
</view>