You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <view class="Box">
- <view class="navigationBox">
- <view class="textBox">
- <view class="{{indexFlag==item.value?'item_a':'item'}}" wx:for="{{navigationLsit}}" bindtap="setIndex" data-index="{{item.value}}">{{item.name}} </view>
- </view>
- <image class="screen" src="https://formall.oss-accelerate.aliyuncs.com/cimg/saixuan.png" bindtap="showScreen"></image>
- </view>
- <view class="noData" wx:if="{{list.length==0}}">
- <view class="noDataBox">
- <image class="onDataImg" src="../../static/images/jiaoyi.png"></image>
- <text class="text">暂无数据</text>
- </view>
-
- </view>
- <view class="detailsBox" wx:for="{{list}}">
- <view class="withdrawTitleBox">
- <view class="title">提现金额:</view>
- <view class="orange" wx:if="{{item.status==0}}">发起提现</view>
- <view class="status" wx:if="{{item.status==1}}">提现成功</view>
- <view class="red" wx:if="{{item.status==2}}">提现失败,待退回余额</view>
- <view class="purple" wx:if="{{item.status==3}}">提现拒绝</view>
- <view class="blue" wx:if="{{item.status==4}}">审批中</view>
- <view class="orange" wx:if="{{item.status==5}}">审批通过,待到账</view>
- <view class="red" wx:if="{{item.status==6}}">提现失败,已回退余额</view>
- </view>
- <view class="money">¥{{item.totalFee/100}}</view>
- <view class="schedule">{{item.createDate}}</view>
- <view class="goXq" bindtap="goXq" data-item="{{item}}">查看详情</view>
- </view>
- </view>
- <view class="drawerBox {{extraClasses}}" bindtap="showScreen">
- <view class="rightBox">
- <view class=" {{tiemIndex==index?'time_a':'tiem'}}" wx:for="{{tiemLsit}}" bindtap="setTiemIndex" data-index="{{index}}">{{item}}</view>
- </view>
- </view>
|