12345678910111213141516171819202122232425262728293031 |
- <view class="content">
- <view class="content-money">
- <view class="money-box flex">
- <view>
- <view class="text">赠送分红(元)</view>
- <view class="money">{{$root.f0}}</view>
- </view>
- </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',[ [ 'loadData',['$event'] ] ] ] ]}}" scrollY="{{true}}">
- <empty bind:__l="__l" vueId="{{'6f223764-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="title">
- <text>{{item.title}}</text>
- </view>
- <view class="time">
- <text>{{item.add_time}}</text>
- </view>
- </view>
- <view class="money">
- <text>{{(item.pm==0?'-':'+')+item.number}}</text>
- </view>
- </view>
- <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'6f223764-2-'+tabIndex}}"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
|