1234567891011121314151617181920212223242526272829303132333435 |
- <view class="container">
- <view class="reply_btn flex_item">
- <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>
- </view>
- <swiper bindchange="__e" class="swiper-box" current="{{tabCurrentIndex}}" data-event-opts="{{[ [ 'change',[ [ 'changeTab',['$event'] ] ] ] ]}}" duration="300" style="{{'height:'+maxheight+'px'+';'}}">
- <swiper-item class="tab-content" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
- <scroll-view bindscrolltolower="__e" class="list-scroll-content" data-event-opts="{{[ [ 'scrolltolower',[ [ 'loadDate',['$event'] ] ] ] ]}}" scrollY="{{true}}">
- <view class="eva-box" wx:for="{{tabItem.orderList}}" wx:key="index">
- <view class="row-1 flex1">
- <image class="portrait" mode="aspectFill" src="{{item.avatar}}"></image>
- <view class="right flex1">
- <view>
- <view class="name flex1">
- <view>{{item.nickname}}</view>
- </view>
- <uni-rate bind:__l="__l" class="rate" disabled="{{true}}" margin="1" size="10" value="{{item.product_score}}" vueId="{{'28ff8805-1-'+tabIndex+'-'+index}}"></uni-rate>
- </view>
- <view class="bot">
- <text class="attr"></text>
- <text class="time">{{item.add_time}}</text>
- </view>
- </view>
- </view>
- <view class="con">{{item.comment}}</view>
- <view class="con_box">
- <view class="con_image" wx:for="{{item.pics}}" wx:for-index="__i0__" wx:for-item="ls">
- <image src="{{ls}}"></image>
- </view>
- </view>
- </view>
- <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'28ff8805-2-'+tabIndex}}"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
|