424 lines
9.5 KiB
Vue
424 lines
9.5 KiB
Vue
<template>
|
|
<page-meta :page-style="themeColor"></page-meta>
|
|
<view class="container">
|
|
<view class="bank-account-wrap" @click="goAccount()">
|
|
<view class="tx-wrap" v-if="bankAccountInfo.withdraw_type">
|
|
<text class="tx-to">提现到</text>
|
|
<view class="tx-bank" v-if="bankAccountInfo.withdraw_type == 'wechatpay'">微信默认钱包</view>
|
|
<view class="tx-bank" v-else>{{ bankAccountInfo.bank_account }}</view>
|
|
<view class="tx-img" v-if="bankAccountInfo.withdraw_type == 'alipay'">
|
|
<image :src="$util.img('public/uniapp/member/apply_withdrawal/alipay.png')" mode="widthFix"></image>
|
|
</view>
|
|
<view class="tx-img" v-else-if="bankAccountInfo.withdraw_type == 'bank'">
|
|
<image :src="$util.img('public/uniapp/member/apply_withdrawal/bank.png')" mode="widthFix"></image>
|
|
</view>
|
|
<view class="tx-img" v-else-if="bankAccountInfo.withdraw_type == 'wechatpay'">
|
|
<image :src="$util.img('public/uniapp/member/apply_withdrawal/wechatpay.png')" mode="widthFix"></image>
|
|
</view>
|
|
</view>
|
|
<text class="tx-to" v-else>请添加提现方式</text>
|
|
<view class="iconfont icon-right"></view>
|
|
</view>
|
|
<view class="empty-box"></view>
|
|
<view class="withdraw-wrap">
|
|
<view class="withdraw-wrap-title">提现金额:</view>
|
|
<view class="money-wrap">
|
|
<text class="unit">{{ $lang('common.currencySymbol') }}</text>
|
|
<input type="digit" class="withdraw-money" v-model="withdrawMoney" />
|
|
<view class="delete" @click="remove" v-if="withdrawMoney"><image :src="$util.img('public/uniapp/member/apply_withdrawal/close.png')" mode="widthFix"></image></view>
|
|
</view>
|
|
<view class="bootom">
|
|
<view>
|
|
<text class="color-tip">可提现消费券:{{ $lang('common.currencySymbol') }}{{ withdrawInfo.member_info.balance_money | moneyFormat }}</text>
|
|
<text class="all-tx color-base-text" @click="allTx">全部提现</text>
|
|
</view>
|
|
</view>
|
|
<view class="desc">
|
|
<!-- <text>最小提现金额为{{ $lang('common.currencySymbol') }}{{ withdrawInfo.config.min | moneyFormat }}</text>-->
|
|
<text>手续费为{{ withdrawInfo.config.rate + '%' }}</text>
|
|
</view>
|
|
<view class="desc">
|
|
<text>提现金额需为100的整数倍</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view
|
|
class="btn color-base-border ns-gradient-otherpages-member-widthdrawal-withdrawal"
|
|
:class="{ disabled: withdrawMoney == '' || withdrawMoney == 0 }"
|
|
@click="withdraw"
|
|
>
|
|
提现
|
|
</view>
|
|
|
|
<view class="recoend" @click="toWithdrawal"><view class="recoend-con">提现记录</view></view>
|
|
<loading-cover ref="loadingCover"></loading-cover>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
withdrawInfo: {
|
|
config: {
|
|
is_use: 0,
|
|
min: 1,
|
|
rate: 0
|
|
},
|
|
member_info: {
|
|
balance_money: 0,
|
|
balance_withdraw: 0,
|
|
balance_withdraw_apply: 0
|
|
}
|
|
},
|
|
bankAccountInfo: {},
|
|
withdrawMoney: '',
|
|
isSub: false
|
|
};
|
|
},
|
|
onShow() {
|
|
|
|
|
|
|
|
if (uni.getStorageSync('token')) {
|
|
this.getWithdrawInfo();
|
|
this.getBankAccountInfo();
|
|
} else {
|
|
this.$util.redirectTo('/pages_tool/login/login', {
|
|
back: '/pages_tool/member/apply_withdrawal'
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
toWithdrawal() {
|
|
this.$util.redirectTo('/pages_tool/member/withdrawal');
|
|
},
|
|
//全部提现
|
|
allTx() {
|
|
this.withdrawMoney = this.withdrawInfo.member_info.balance_money;
|
|
},
|
|
|
|
// 删除提现金额
|
|
remove() {
|
|
this.withdrawMoney = '';
|
|
},
|
|
/**
|
|
* 获取提现信息
|
|
*/
|
|
getWithdrawInfo() {
|
|
this.$api.sendRequest({
|
|
url: '/api/memberwithdraw/info',
|
|
success: res => {
|
|
if (res.code >= 0 && res.data) {
|
|
this.withdrawInfo = res.data;
|
|
if (this.withdrawInfo.config.is_use == 0) {
|
|
this.$util.redirectTo('/pages/member/index');
|
|
}
|
|
}
|
|
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
|
},
|
|
fail: res => {
|
|
if (this.$refs.loadingCover) this.$refs.loadingCover.hide();
|
|
}
|
|
});
|
|
},
|
|
/**
|
|
* 银行账号信息
|
|
*/
|
|
getBankAccountInfo() {
|
|
this.$api.sendRequest({
|
|
url: '/api/memberbankaccount/defaultinfo',
|
|
success: res => {
|
|
if (res.code >= 0 && res.data) {
|
|
this.bankAccountInfo = res.data;
|
|
}
|
|
}
|
|
});
|
|
},
|
|
verify() {
|
|
if (this.withdrawMoney == '' || this.withdrawMoney == 0 || isNaN(parseFloat(this.withdrawMoney))) {
|
|
this.$util.showToast({
|
|
title: '请输入提现金额'
|
|
});
|
|
return false;
|
|
}
|
|
if (parseFloat(this.withdrawMoney) > parseFloat(this.withdrawInfo.member_info.balance_money)) {
|
|
this.$util.showToast({
|
|
title: '提现金额超出可提现金额'
|
|
});
|
|
return false;
|
|
}
|
|
if (parseFloat(this.withdrawMoney) < parseFloat(this.withdrawInfo.config.min)) {
|
|
this.$util.showToast({
|
|
title: '提现金额小于最低提现金额'
|
|
});
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
withdraw() {
|
|
if (!this.bankAccountInfo.withdraw_type) {
|
|
this.$util.showToast({
|
|
title: '请先添加提现方式'
|
|
});
|
|
return;
|
|
}
|
|
if (this.verify()) {
|
|
if (this.isSub) return;
|
|
this.isSub = true;
|
|
|
|
var applet_type = 0;
|
|
if (this.bankAccountInfo.withdraw_type == 'wechatpay') {
|
|
// #ifdef MP
|
|
applet_type = 1;
|
|
// #endif
|
|
}
|
|
|
|
// #ifdef MP-WEIXIN
|
|
this.subscribeMessage(() => {
|
|
this.$api.sendRequest({
|
|
url: '/api/memberwithdraw/apply',
|
|
data: {
|
|
apply_money: this.withdrawMoney,
|
|
transfer_type: this.bankAccountInfo.withdraw_type, //转账提现类型
|
|
realname: this.bankAccountInfo.realname,
|
|
mobile: this.bankAccountInfo.mobile,
|
|
bank_name: this.bankAccountInfo.branch_bank_name,
|
|
account_number: this.bankAccountInfo.bank_account,
|
|
applet_type: applet_type
|
|
},
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
this.$util.showToast({
|
|
title: '提现申请成功'
|
|
});
|
|
setTimeout(() => {
|
|
this.$util.redirectTo('/pages_tool/member/withdrawal', {}, 'redirectTo');
|
|
}, 1500);
|
|
} else {
|
|
this.isSub = false;
|
|
this.$util.showToast({
|
|
title: res.message
|
|
});
|
|
}
|
|
},
|
|
fail: res => {
|
|
this.isSub = false;
|
|
}
|
|
});
|
|
});
|
|
// #endif
|
|
|
|
// #ifndef MP-WEIXIN
|
|
this.$api.sendRequest({
|
|
url: '/api/memberwithdraw/apply',
|
|
data: {
|
|
apply_money: this.withdrawMoney,
|
|
transfer_type: this.bankAccountInfo.withdraw_type, //转账提现类型
|
|
realname: this.bankAccountInfo.realname,
|
|
mobile: this.bankAccountInfo.mobile,
|
|
bank_name: this.bankAccountInfo.branch_bank_name,
|
|
account_number: this.bankAccountInfo.bank_account,
|
|
applet_type: applet_type
|
|
},
|
|
success: res => {
|
|
if (res.code >= 0) {
|
|
this.$util.showToast({
|
|
title: '提现申请成功'
|
|
});
|
|
setTimeout(() => {
|
|
this.$util.redirectTo('/pages_tool/member/withdrawal', {}, 'redirectTo');
|
|
}, 1500);
|
|
} else {
|
|
this.isSub = false;
|
|
this.$util.showToast({
|
|
title: res.message
|
|
});
|
|
}
|
|
},
|
|
fail: res => {
|
|
this.isSub = false;
|
|
}
|
|
});
|
|
// #endif
|
|
}
|
|
},
|
|
goAccount() {
|
|
this.$util.redirectTo(
|
|
'/pages_tool/member/account',
|
|
{
|
|
back: '/pages_tool/member/apply_withdrawal'
|
|
},
|
|
'redirectTo'
|
|
);
|
|
},
|
|
/**
|
|
* 微信订阅消息
|
|
*/
|
|
subscribeMessage(callback) {
|
|
this.$api.sendRequest({
|
|
url: '/weapp/api/weapp/messagetmplids',
|
|
data: {
|
|
keywords: 'USER_WITHDRAWAL_SUCCESS'
|
|
},
|
|
success: res => {
|
|
if (res.code == 0 && res.data.length) {
|
|
uni.requestSubscribeMessage({
|
|
tmplIds: res.data,
|
|
fail: res => {
|
|
console.log('fail', res);
|
|
},
|
|
complete: () => {
|
|
callback();
|
|
}
|
|
});
|
|
} else {
|
|
callback();
|
|
}
|
|
},
|
|
fail: res => {
|
|
callback();
|
|
}
|
|
});
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.container {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: #fff;
|
|
}
|
|
|
|
.empty-box {
|
|
height: 20rpx;
|
|
}
|
|
|
|
.bank-account-wrap {
|
|
margin: 0 20rpx;
|
|
padding: 20rpx 30rpx;
|
|
border-bottom: 2rpx solid #f7f7f7;
|
|
position: relative;
|
|
|
|
.tx-wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-right: 60rpx;
|
|
|
|
.tx-bank {
|
|
margin-right: 60rpx;
|
|
flex: 1;
|
|
margin-left: 10rpx;
|
|
text-align: right;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.tx-img {
|
|
position: absolute;
|
|
right: 100rpx;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.iconfont {
|
|
position: absolute;
|
|
right: 40rpx;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
.withdraw-wrap {
|
|
margin: 0 20rpx;
|
|
padding: 30rpx;
|
|
border-radius: 16rpx;
|
|
box-shadow: rgba(110, 110, 110, 0.09) 0 0 20rpx 0;
|
|
|
|
.money-wrap {
|
|
padding: 20rpx 0;
|
|
border-bottom: 2rpx solid #eee;
|
|
display: flex;
|
|
align-items: baseline;
|
|
.unit {
|
|
font-size: 60rpx;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.withdraw-money {
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
min-height: 70rpx;
|
|
padding-left: 20rpx;
|
|
font-size: 60rpx;
|
|
flex: 1;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.delete {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.bootom {
|
|
display: flex;
|
|
padding-top: 20rpx;
|
|
|
|
text {
|
|
line-height: 1;
|
|
flex: 2;
|
|
}
|
|
|
|
.all-tx {
|
|
padding-left: 10rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
margin: 0 30rpx;
|
|
margin-top: 60rpx;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
border-radius: $border-radius;
|
|
color: #fff;
|
|
text-align: center;
|
|
background-color: var(--main-color);
|
|
&.disabled {
|
|
background: #ccc;
|
|
border-color: #ccc;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.recoend {
|
|
margin-top: 40rpx;
|
|
|
|
.recoend-con {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.desc {
|
|
font-size: $font-size-tag;
|
|
color: #999;
|
|
}
|
|
</style>
|