|
|
|
@ -1,14 +1,47 @@ |
|
|
|
<template> |
|
|
|
<view> |
|
|
|
<view>订单号:{{withdrawDetailInfo.orderId}}</view> |
|
|
|
<view>提现金额:{{withdrawDetailInfo.amt}}</view> |
|
|
|
<view>手机号:{{withdrawDetailInfo.phone}}</view> |
|
|
|
<view>银行卡:{{withdrawDetailInfo.bankNo}}</view> |
|
|
|
<view>渠道:{{withdrawDetailInfo.channel}}</view> |
|
|
|
<view>状态:{{withdrawDetailInfo.status}}</view> |
|
|
|
<view>创建时间:{{withdrawDetailInfo.createTime}}</view> |
|
|
|
<view>审核理由:{{withdrawDetailInfo.reason}}</view> |
|
|
|
<view>到账时间:{{withdrawDetailInfo.achieveTime}}</view> |
|
|
|
<view class="back-top"></view> |
|
|
|
|
|
|
|
<uni-group mode="card" class="card"> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">订单号:</text> |
|
|
|
<text>{{ withdrawDetailInfo.orderId }}</text> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="box" v-if="withdrawDetailInfo.channel == '2'"> |
|
|
|
<text class="title">手机号:</text> |
|
|
|
<text>{{withdrawDetailInfo.phone }}</text> |
|
|
|
</view> |
|
|
|
<view class="box" v-if="withdrawDetailInfo.channel == '1'"> |
|
|
|
<text class="title">银行卡:</text> |
|
|
|
<text>{{withdrawDetailInfo.bankNo }}</text> |
|
|
|
</view> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">提现金额:</text> |
|
|
|
<text style="color: red">{{ withdrawDetailInfo.amt }}</text> |
|
|
|
</view> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">渠道:</text> |
|
|
|
<text>{{ setChannel(withdrawDetailInfo.channel) }}</text> |
|
|
|
</view> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">状态:</text> |
|
|
|
<text>{{ setStatus(withdrawDetailInfo.status) }}</text> |
|
|
|
</view> |
|
|
|
<view class="border"></view> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">提现时间:</text> |
|
|
|
<text>{{withdrawDetailInfo.createTime}}</text> |
|
|
|
</view> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">审核理由:</text> |
|
|
|
<text>{{withdrawDetailInfo.reason}}</text> |
|
|
|
</view> |
|
|
|
<view class="box"> |
|
|
|
<text class="title">到账时间:</text> |
|
|
|
<text>{{withdrawDetailInfo.achieveTime || "待确认"}}</text> |
|
|
|
</view> |
|
|
|
</uni-group> |
|
|
|
</view> |
|
|
|
</template> |
|
|
|
|
|
|
|
@ -53,10 +86,63 @@ |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
setChannel(data){ |
|
|
|
if (data == "0") { |
|
|
|
return "微信"; |
|
|
|
} else if (data == "1") { |
|
|
|
return "银行卡"; |
|
|
|
} else if (data == "2") { |
|
|
|
return "支付宝"; |
|
|
|
} |
|
|
|
}, |
|
|
|
setStatus(data){ |
|
|
|
if (data == "0") { |
|
|
|
return "待审核"; |
|
|
|
} else if (data == "1") { |
|
|
|
return "提现中"; |
|
|
|
} else if (data == "2") { |
|
|
|
return "提现成功"; |
|
|
|
} else if(data == "3"){ |
|
|
|
return "提现失败"; |
|
|
|
}else if(data == "4"){ |
|
|
|
return "审核拒绝"; |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|
<style> |
|
|
|
|
|
|
|
.back-top { |
|
|
|
width: 100%; |
|
|
|
position: absolute; |
|
|
|
height: 120px; |
|
|
|
background: #416bdc; |
|
|
|
} |
|
|
|
.card { |
|
|
|
width: 100%; |
|
|
|
position: absolute; |
|
|
|
} |
|
|
|
.uni-group--card { |
|
|
|
margin-top: 20px !important; |
|
|
|
} |
|
|
|
.title { |
|
|
|
display: block; |
|
|
|
width: 70px; |
|
|
|
margin-right: 10px; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
.box { |
|
|
|
display: flex; |
|
|
|
margin-bottom: 20px; |
|
|
|
} |
|
|
|
.card view:first-child { |
|
|
|
margin-top: 10px; |
|
|
|
} |
|
|
|
.border { |
|
|
|
width: 100%; |
|
|
|
height: 1px; |
|
|
|
background: rgb(229, 229, 229); |
|
|
|
margin-bottom: 20px; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|