|
@@ -5,23 +5,23 @@
|
|
|
<view class="header dis f-c a-c">
|
|
<view class="header dis f-c a-c">
|
|
|
<image class="bankimage" src="/static/image/zgcx.png" mode=""></image>
|
|
<image class="bankimage" src="/static/image/zgcx.png" mode=""></image>
|
|
|
<!-- 提现银行 -->
|
|
<!-- 提现银行 -->
|
|
|
- <text class="bankName mt-1 mb-2">工商银行</text>
|
|
|
|
|
|
|
+ <text class="bankName mt-1 mb-2">{{info.bankName}}</text>
|
|
|
<!-- 提现金额 -->
|
|
<!-- 提现金额 -->
|
|
|
- <text class="sum">180.00</text>
|
|
|
|
|
|
|
+ <text class="sum">{{info.amount}}</text>
|
|
|
<!-- 提现状态 -->
|
|
<!-- 提现状态 -->
|
|
|
- <text class="status">提现审核中</text>
|
|
|
|
|
|
|
+ <text class="status">{{statusMap(info.status)}}</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="item-cell">
|
|
<view class="item-cell">
|
|
|
<view class="cell dis j-s">
|
|
<view class="cell dis j-s">
|
|
|
<text class="title">创建时间</text>
|
|
<text class="title">创建时间</text>
|
|
|
<view class="data font-weight">
|
|
<view class="data font-weight">
|
|
|
- 2025.02.02 12:22:00
|
|
|
|
|
|
|
+ {{info.createTime}}
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="cell dis j-s">
|
|
<view class="cell dis j-s">
|
|
|
<text class="title">提现账号</text>
|
|
<text class="title">提现账号</text>
|
|
|
<view class="data font-weight">
|
|
<view class="data font-weight">
|
|
|
- 招商银行(2325)**玉
|
|
|
|
|
|
|
+ {{info.bankName}}({{info.bankCardNum.slice(-4)}}){{info.userName}}
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="cell dis j-s">
|
|
<view class="cell dis j-s">
|
|
@@ -33,7 +33,8 @@
|
|
|
<view class="cell dis j-s">
|
|
<view class="cell dis j-s">
|
|
|
<text class="title">审核说明</text>
|
|
<text class="title">审核说明</text>
|
|
|
<view class="data font-weight">
|
|
<view class="data font-weight">
|
|
|
- 后台人员审核中,请耐心等待
|
|
|
|
|
|
|
+ {{info.status==0?'后台人员审核中,请耐心等待':info.status==1?'提现已入账,如有疑问,请联系相关工作人员':info.rejectReason}}
|
|
|
|
|
+
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -47,7 +48,7 @@
|
|
|
return {
|
|
return {
|
|
|
stepList: [{
|
|
stepList: [{
|
|
|
title: '提交提现申请', // 步骤标题
|
|
title: '提交提现申请', // 步骤标题
|
|
|
- show: true, // 状态:true-成功, false-失败, null-未完成
|
|
|
|
|
|
|
+ show: false, // 状态:true-成功, false-失败, null-未完成
|
|
|
time: '2025.02.02 12:22:00'
|
|
time: '2025.02.02 12:22:00'
|
|
|
}, {
|
|
}, {
|
|
|
title: '财务人员审核', // 步骤标题
|
|
title: '财务人员审核', // 步骤标题
|
|
@@ -64,11 +65,21 @@
|
|
|
onShow() {
|
|
onShow() {
|
|
|
|
|
|
|
|
},
|
|
},
|
|
|
- onLoad() {
|
|
|
|
|
|
|
+ onLoad(options) {
|
|
|
|
|
+ if (options) {
|
|
|
|
|
+ this.info = JSON.parse(options.info);
|
|
|
|
|
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
-
|
|
|
|
|
|
|
+ statusMap(type) {
|
|
|
|
|
+ let MaP = [
|
|
|
|
|
+ '待审核',
|
|
|
|
|
+ '审核通过',
|
|
|
|
|
+ '审核驳回',
|
|
|
|
|
+ ]
|
|
|
|
|
+ return MaP[type]
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|