1234567891011121314151617181920212223242526272829 |
- <view class="content">
- <swiper bindchange="__e" class="swiper-box" current="{{tabCurrentIndex}}" data-event-opts="{{[ [ 'change',[ [ 'changeTab',['$event'] ] ] ] ]}}" duration="300">
- <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',[ [ 'loadData',['$event'] ] ] ] ]}}" scrollY="{{true}}">
- <empty bind:__l="__l" vueId="{{'c7775378-1-'+tabIndex}}" wx:if="{{tabItem.loaded===true&&tabItem.orderList.length===0}}"></empty>
- <view class="order-item flex" wx:for="{{tabItem.orderList}}" wx:key="index">
- <view class="title-box">
- <view class="time">
- <text>{{'单号:'+item.order_id}}</text>
- </view>
- <view class="time">
- <text>{{'用户:'+item.name}}</text>
- </view>
- <view class="time">
- <text>{{'支付:'+item.price}}</text>
- </view>
- <view class="time">
- <text>{{'时间:'+item.time}}</text>
- </view>
- </view>
- <view class="money">
- <text>{{(item.status==0?'+':'-')+item.money}}</text>
- </view>
- </view>
- <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'c7775378-2-'+tabIndex}}"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
|