|
@@ -4,14 +4,23 @@
|
|
<view class="yong" v-if="current==0" style="margin-top: 20rpx;" v-for="(item,index) in list" :key="index">
|
|
<view class="yong" v-if="current==0" style="margin-top: 20rpx;" v-for="(item,index) in list" :key="index">
|
|
<view class="u-flex">
|
|
<view class="u-flex">
|
|
<u-checkbox :customStyle="{marginBottom: '8px'}" :name="index"
|
|
<u-checkbox :customStyle="{marginBottom: '8px'}" :name="index"
|
|
- :disabled="['unapplied','failed'].includes(item.withdraw_status)&&item.is_confirm==0?true : false">
|
|
|
|
|
|
+ :disabled="['unapplied','failed'].includes(item.withdraw_status)&&item.is_confirm==1?false : true">
|
|
</u-checkbox>
|
|
</u-checkbox>
|
|
<view class="" style="flex: 1;">
|
|
<view class="" style="flex: 1;">
|
|
- <view class="" style="font-size: 24rpx;
|
|
|
|
|
|
+ <view class="u-flex u-row-between" style="font-size: 24rpx;
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-family: PingFangSC, PingFang SC;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
color: #555555;">
|
|
color: #555555;">
|
|
- 订单编号:{{item.order.order_no}}
|
|
|
|
|
|
+ <text>订单编号:{{item.order.order_no}}</text>
|
|
|
|
+ <view class="deposit" v-if="item.withdraw_status == 'unapplied'">
|
|
|
|
+ 未提现
|
|
|
|
+ </view>
|
|
|
|
+ <view style="color: rgba(250, 143, 0, 1);background-color:rgba(250, 143, 0, .1) ;" class="deposit" v-if="item.withdraw_status == 'withdrawing'">
|
|
|
|
+ 提现中
|
|
|
|
+ </view>
|
|
|
|
+ <view style="color: rgba(53, 170, 31, 1);background-color:rgba(53, 170, 31, .1) ;" class="deposit" v-if="item.withdraw_status == 'success'">
|
|
|
|
+ 已提现
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
<view class="u-flex u-row-between"
|
|
<view class="u-flex u-row-between"
|
|
style="margin-top: 20rpx; border-top:2rpx solid #F6F6F6;padding-top: -18rpx;box-sizing: border-box;">
|
|
style="margin-top: 20rpx; border-top:2rpx solid #F6F6F6;padding-top: -18rpx;box-sizing: border-box;">
|
|
@@ -203,7 +212,7 @@ color: #555555;">
|
|
if (n.length > 0) {
|
|
if (n.length > 0) {
|
|
this.arralylist = []
|
|
this.arralylist = []
|
|
this.list.forEach((item, index) => {
|
|
this.list.forEach((item, index) => {
|
|
- if (item.is_confirm == 1) {
|
|
|
|
|
|
+ if (item.is_confirm == 1 && ['unapplied', 'failed'].includes(item.withdraw_status)) {
|
|
this.arralylist.push(index)
|
|
this.arralylist.push(index)
|
|
}
|
|
}
|
|
})
|
|
})
|