123456789101112131415161718192021222324252627282930313233 |
- <view class="comments">
- <view class="h">
- <view class="item {{ showType == 0 ? 'active' : ''}}" bindtap="switchTab">
- <view class="txt">全部({{allCount}})</view>
- </view>
- <view class="item {{ showType == 0 ? '' : 'active'}}" bindtap="switchTab">
- <view class="txt">有图({{hasPicCount}})</view>
- </view>
- </view>
- <view class="b">
- <view class="item" wx:for="{{comments}}" wx:key="{{item.id}}">
- <view class="info">
- <view class="user">
- <image src="{{item.user_info.avatar}}"></image>
- <text>{{item.user_info.nickname}}</text>
- </view>
- <view class="time">{{item.add_time}}</view>
- </view>
- <view class="comment">{{item.content}}</view>
- <view class="imgs" wx:if="{{item.pic_list.length > 0}}">
- <image class="img" wx:for="{{item.pic_list}}" wx:key="{{pitem.id}}" wx:for-item="pitem" src="{{pitem.pic_url}}"></image>
- </view>
- <view class="spec">
- <!-- <text class="item">白色 2件</text> -->
- </view>
- <!--<view class="customer-service" wx:if="{{item.commentReplyVO}}">
- <text class="u">小选回复:</text>
- <text class="c">{{item.commentReplyVO.replyContent}}</text>
- </view>-->
- </view>
- </view>
- </view>
|