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.
|
|
|
|
<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>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getWithdrawDetails
|
|
|
|
|
} from '@/api/userInfo.js'
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
withdrawDetailInfo: {
|
|
|
|
|
orderId: '',
|
|
|
|
|
amt: 0,
|
|
|
|
|
phone: '',
|
|
|
|
|
bankNo: '',
|
|
|
|
|
channel: '',
|
|
|
|
|
status: '',
|
|
|
|
|
createTime: '',
|
|
|
|
|
reason: '',
|
|
|
|
|
achieveTime: ''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad: function(option) { //option为object类型,会序列化上个页面传递的参数
|
|
|
|
|
console.log(option)
|
|
|
|
|
this.withdrawDetailInfo.orderId = option.orderId
|
|
|
|
|
this.getWithdrawDetails();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 查询提现记录明细
|
|
|
|
|
async getWithdrawDetails() {
|
|
|
|
|
const res = await getWithdrawDetails({
|
|
|
|
|
orderId: this.withdrawDetailInfo.orderId
|
|
|
|
|
})
|
|
|
|
|
console.log('res', res)
|
|
|
|
|
if (res.data.code === 200) {
|
|
|
|
|
this.withdrawDetailInfo = res.data.data
|
|
|
|
|
} else {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
content: '提现记录详情数据加载失败!',
|
|
|
|
|
showCancel: false
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
</style>
|