reply.wxml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="container">
  2. <view class="reply_btn flex_item">
  3. <view bindtap="__e" class="{{['btn',tabCurrentIndex===index?'current':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'tabClick',[index] ] ] ] ]}}" wx:for="{{navList}}" wx:key="index">{{''+item.text+'('+item.number+')'}}</view>
  4. </view>
  5. <swiper bindchange="__e" class="swiper-box" current="{{tabCurrentIndex}}" data-event-opts="{{[ [ 'change',[ [ 'changeTab',['$event'] ] ] ] ]}}" duration="300" style="{{'height:'+maxheight+'px'+';'}}">
  6. <swiper-item class="tab-content" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
  7. <scroll-view bindscrolltolower="__e" class="list-scroll-content" data-event-opts="{{[ [ 'scrolltolower',[ [ 'loadDate',['$event'] ] ] ] ]}}" scrollY="{{true}}">
  8. <view class="eva-box" wx:for="{{tabItem.orderList}}" wx:key="index">
  9. <view class="row-1 flex1">
  10. <image class="portrait" mode="aspectFill" src="{{item.avatar}}"></image>
  11. <view class="right flex1">
  12. <view>
  13. <view class="name flex1">
  14. <view>{{item.nickname}}</view>
  15. </view>
  16. <uni-rate bind:__l="__l" class="rate" disabled="{{true}}" margin="1" size="10" value="{{item.product_score}}" vueId="{{'28ff8805-1-'+tabIndex+'-'+index}}"></uni-rate>
  17. </view>
  18. <view class="bot">
  19. <text class="attr"></text>
  20. <text class="time">{{item.add_time}}</text>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="con">{{item.comment}}</view>
  25. <view class="con_box">
  26. <view class="con_image" wx:for="{{item.pics}}" wx:for-index="__i0__" wx:for-item="ls">
  27. <image src="{{ls}}"></image>
  28. </view>
  29. </view>
  30. </view>
  31. <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'28ff8805-2-'+tabIndex}}"></uni-load-more>
  32. </scroll-view>
  33. </swiper-item>
  34. </swiper>
  35. </view>