1234567891011121314151617181920212223242526272829303132333435363738 |
- <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 bindtap="__e" class="moneyTx" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/wallet/recharge'] ] ] ] ]}}">充值</view>
- <view bindtap="__e" class="moneyTxs" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/wallet/withdrawal'] ] ] ] ]}}">提现</view>
- </view>
- <view class="navbar">
- <view bindtap="__e" class="{{['nav-item',tabCurrentIndex===index?'current':'']}}" data-event-opts="{{[ [ 'tap',[ [ 'tabClick',[index] ] ] ] ]}}" wx:for="{{navList}}" wx:key="index">{{item.text}}</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="{{'ce6f9bc0-1-'+tabIndex}}" wx:if="{{tabItem.loaded===true&&tabItem.orderList.length===0}}"></empty>
- <view class="itemList" wx:for="{{tabItem.orderList}}" wx:for-index="indexs" wx:for-item="items" wx:key="indexs">
- <view class="order-item flex" wx:for="{{items.list}}" 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>
- </view>
- <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'ce6f9bc0-2-'+tabIndex}}"></uni-load-more>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
|