mall-uniapp/pages/users/user_cash/index.vue

442 lines
13 KiB
Vue
Raw Normal View History

2020-08-13 08:12:57 +00:00
<template>
<view>
<view class='cash-withdrawal'>
<view class='nav acea-row'>
2023-09-22 10:06:11 +00:00
<view v-for="(item, index) in WithdrawTypeEnum" :key="index" v-if="withdrawTypes.includes(item.type)"
class='item font-color' @click="switchWithdrawType(item.type)">
<view class='line bg-color' :class='withdrawType === item.type ? "on":""'></view>
<view class='iconfont' :class='item.icon+" "+(withdrawType === item.type ? "on":"")'></view>
2020-08-13 08:12:57 +00:00
<view>{{item.name}}</view>
</view>
</view>
<view class='wrapper'>
2023-09-22 10:06:11 +00:00
<view :hidden='withdrawType !== WithdrawTypeEnum.BANK.type' class='list'>
2020-08-13 08:12:57 +00:00
<form @submit="subCash" report-submit='true'>
<view class='item acea-row row-between-wrapper'>
<view class='name'>持卡人</view>
<view class='input'><input placeholder='请输入持卡人姓名' placeholder-class='placeholder' name="name"></input></view>
</view>
<view class='item acea-row row-between-wrapper'>
<view class='name'>卡号</view>
<view class='input'><input type='number' placeholder='请填写卡号' placeholder-class='placeholder' name="cardum"></input></view>
</view>
<view class='item acea-row row-between-wrapper'>
<view class='name'>银行</view>
<view class='input'>
2023-09-22 07:38:40 +00:00
<picker @change="bindPickerChange" :value="bankIndex" range-key="label" :range="bankList">
<text class='Bank'>{{bankList[bankIndex] && bankList[bankIndex].label}}</text>
2020-08-13 08:12:57 +00:00
<text class='iconfont icon-qiepian38'></text>
</picker>
</view>
</view>
<view class='item acea-row row-between-wrapper'>
<view class='name'>提现</view>
<view class='input'><input :placeholder='"最低提现金额"+minPrice' placeholder-class='placeholder' name="money" type='digit'></input></view>
</view>
<view class='tip'>
2023-09-21 15:56:33 +00:00
当前可提现金额: <text class="price">{{ fen2yuan(commission.brokeragePrice) }}</text>冻结佣金{{ fen2yuan(commission.frozenPrice) }}
2020-08-13 08:12:57 +00:00
</view>
<view class='tip'>
2023-09-06 16:15:00 +00:00
说明: 每笔佣金的冻结期为{{frozenDays}}到期后可提现
2020-08-13 08:12:57 +00:00
</view>
<button formType="submit" class='bnt bg-color'>提现</button>
</form>
</view>
2023-09-22 10:06:11 +00:00
<view :hidden='withdrawType !== WithdrawTypeEnum.WECHAT.type' class='list'>
2020-08-13 08:12:57 +00:00
<form @submit="subCash" report-submit='true'>
<view class='item acea-row row-between-wrapper'>
<view class='name'>账号</view>
<view class='input'><input placeholder='请填写您的微信账号' placeholder-class='placeholder' name="name"></input></view>
</view>
<view class='item acea-row row-between-wrapper'>
<view class='name'>提现</view>
2023-09-06 16:15:00 +00:00
<view class='input'><input :placeholder='"最低提现金额" + minPrice' placeholder-class='placeholder' name="money" type='digit'></input></view>
2020-08-13 08:12:57 +00:00
</view>
<view class='item acea-row row-top row-between'>
<view class='name'>收款码</view>
<view class="input acea-row">
<view class="picEwm" v-if="qrcodeUrlW">
<image :src="qrcodeUrlW"></image>
<text class='iconfont icon-guanbi1 font-color' @click='DelPicW'></text>
</view>
<view class='pictrue acea-row row-center-wrapper row-column' @click='uploadpic("W")' v-else>
<text class='iconfont icon-icon25201'></text>
<view>上传图片</view>
</view>
</view>
</view>
2020-08-13 08:12:57 +00:00
<view class='tip'>
2023-09-21 15:56:33 +00:00
当前可提现金额: <text class="price">{{ fen2yuan(commission.brokeragePrice) }}</text>冻结佣金{{ fen2yuan(commission.frozenPrice) }}
2020-08-13 08:12:57 +00:00
</view>
<view class='tip'>
2023-09-06 16:15:00 +00:00
说明: 每笔佣金的冻结期为{{frozenDays}}到期后可提现
2020-08-13 08:12:57 +00:00
</view>
<button formType="submit" class='bnt bg-color'>提现</button>
</form>
</view>
2023-09-22 10:06:11 +00:00
<view :hidden='withdrawType !== WithdrawTypeEnum.ALIPAY.type' class='list'>
2020-08-13 08:12:57 +00:00
<form @submit="subCash" report-submit='true'>
<view class='item acea-row row-between-wrapper'>
<view class='name'>账号</view>
<view class='input'><input placeholder='请填写您的支付宝账号' placeholder-class='placeholder' name="name"></input></view>
</view>
<view class='item acea-row row-between-wrapper'>
<view class='name'>提现</view>
<view class='input'><input :placeholder='"最低提现金额"+minPrice' placeholder-class='placeholder' name="money" type='digit'></input></view>
</view>
<view class='item acea-row row-top row-between'>
<view class='name'>收款码</view>
<view class="input acea-row">
<view class="picEwm" v-if="qrcodeUrlZ">
<image :src="qrcodeUrlZ"></image>
<text class='iconfont icon-guanbi1 font-color' @click='DelPicZ'></text>
</view>
<view class='pictrue acea-row row-center-wrapper row-column' @click='uploadpic("Z")' v-else>
<text class='iconfont icon-icon25201'></text>
<view>上传图片</view>
</view>
</view>
</view>
2020-08-13 08:12:57 +00:00
<view class='tip'>
2023-09-21 15:56:33 +00:00
当前可提现金额: <text class="price">{{ fen2yuan(commission.brokeragePrice) }}</text>冻结佣金{{ fen2yuan(commission.frozenPrice) }}
2020-08-13 08:12:57 +00:00
</view>
<view class='tip'>
2023-09-06 16:15:00 +00:00
说明: 每笔佣金的冻结期为{{frozenDays}}到期后可提现
2020-08-13 08:12:57 +00:00
</view>
<button formType="submit" class='bnt bg-color'>提现</button>
</form>
</view>
</view>
</view>
</view>
</template>
<script>
2023-09-06 16:15:00 +00:00
import { toLogin } from '@/libs/login.js';
import { mapGetters } from "vuex";
import * as TradeConfigApi from '@/api/trade/config.js';
import * as BrokerageAPI from '@/api/trade/brokerage.js'
import * as Util from '@/utils/util.js';
2023-09-22 07:38:40 +00:00
import { getDicts } from "@/api/system/dict";
2023-09-22 10:06:11 +00:00
import { DICT_TYPE, BrokerageWithdrawTypeEnum } from "@/utils/dict";
2023-09-06 16:15:00 +00:00
export default {
2020-08-13 08:12:57 +00:00
data() {
return {
2023-09-22 10:06:11 +00:00
WithdrawTypeEnum: BrokerageWithdrawTypeEnum,
withdrawType: 0,
2023-09-22 07:38:40 +00:00
bankIndex: 0,
bankList: [], // 提现银行
2023-09-06 16:15:00 +00:00
minPrice: 0.00, // 最低提现金额
frozenDays: 0, // 佣金冻结期
2023-09-22 10:06:11 +00:00
withdrawTypes: [], // 提现方式
2020-08-13 08:12:57 +00:00
isClone: false,
2023-09-06 16:15:00 +00:00
commission: {}, // 分销信息
qrcodeUrlW:"",
qrcodeUrlZ:"",
2023-09-06 16:15:00 +00:00
isCommitted: false // 防止多次提交
2020-08-13 08:12:57 +00:00
};
},
computed: mapGetters(['isLogin']),
watch:{
isLogin:{
2023-09-06 16:15:00 +00:00
handler: function(newV,oldV) {
if(newV){
this.getUserExtractBank();
this.getExtractUser();
}
},
deep:true
}
},
2020-08-13 08:12:57 +00:00
onLoad() {
2023-09-06 16:15:00 +00:00
if (!this.isLogin) {
toLogin();
return;
2020-08-13 08:12:57 +00:00
}
2023-09-22 07:38:40 +00:00
this.getUserExtractBank();
2023-09-06 16:15:00 +00:00
this.getExtractUser();
2020-08-13 08:12:57 +00:00
},
methods: {
uploadpic: function (type) {
2023-09-06 16:15:00 +00:00
this.$util.uploadImageOne({}, res => {
this.newAvatar = res.data;
if (type === 'W') {
this.qrcodeUrlW = res.data;
} else {
this.qrcodeUrlZ = res.data;
}
});
},
/**
* 删除图片
*/
DelPicW: function () {
this.qrcodeUrlW = "";
},
DelPicZ: function () {
this.qrcodeUrlZ = "";
},
getExtractUser(){
2023-09-06 16:15:00 +00:00
BrokerageAPI.getBrokerageUser().then(res=>{
2020-08-13 08:12:57 +00:00
this.commission = res.data;
})
2023-09-06 16:15:00 +00:00
TradeConfigApi.getTradeConfig().then(res => {
2023-09-22 10:06:11 +00:00
this.minPrice = Util.fen2yuan(res.data.brokerageWithdrawMinPrice || 0);
2023-09-21 15:56:33 +00:00
this.frozenDays = res.data.brokerageFrozenDays || 0;
2023-09-24 14:32:11 +00:00
this.withdrawTypes = res.data.brokerageWithdrawTypes || [];
2023-09-22 10:06:11 +00:00
this.withdrawType = this.withdrawTypes[0]; // 默认选中第一个提现方式
2023-09-06 16:15:00 +00:00
});
2020-08-13 08:12:57 +00:00
},
getUserExtractBank: function() {
let that = this;
2023-09-22 07:38:40 +00:00
getDicts(DICT_TYPE.BROKERAGE_BANK_NAME).then(res => {
let bankList = res.data;
bankList.unshift({ label: '请选择银行' });
that.$set(that, 'bankList', bankList);
2020-08-13 08:12:57 +00:00
});
},
2023-09-22 10:06:11 +00:00
switchWithdrawType: function(current) {
this.withdrawType = current;
2020-08-13 08:12:57 +00:00
},
bindPickerChange: function(e) {
2023-09-22 07:38:40 +00:00
this.bankIndex = e.detail.value;
2020-08-13 08:12:57 +00:00
},
moneyInput(e) {
//正则表达试
2023-09-06 16:15:00 +00:00
e.target.value = (e.target.value.match(/^\d*(\.?\d{0,2})/g)[0]) || null
//重新赋值给input
this.$nextTick(() => {
this.money= e.target.value
})
},
2020-08-13 08:12:57 +00:00
subCash: function(e) {
let that = this,
value = e.detail.value;
2023-09-22 10:06:11 +00:00
const form = { type: this.withdrawType };
if (this.withdrawType === this.WithdrawTypeEnum.BANK.type) { // 银行卡
2023-09-06 16:15:00 +00:00
if (value.name.length === 0) {
return this.$util.Tips({
title: '请填写持卡人姓名'
});
}
if (value.cardum.length === 0) {
return this.$util.Tips({
title: '请填写卡号'
});
}
2023-09-22 07:38:40 +00:00
if (that.bankIndex === 0) {
2023-09-06 16:15:00 +00:00
return this.$util.Tips({
title: "请选择银行"
});
}
form.name = value.name;
2023-09-22 10:06:11 +00:00
form.accountNo = value.cardum;
2023-09-22 07:38:40 +00:00
form.bankName = that.bankList[that.bankIndex].value;
2023-09-22 10:06:11 +00:00
} else if (that.withdrawType === this.WithdrawTypeEnum.WECHAT.type) { // 微信
2023-09-06 16:15:00 +00:00
if (value.name.length === 0) {
return this.$util.Tips({
title: '请填写微信号'
});
}
form.accountNo = value.name;
form.accountQrCodeUrl = this.qrcodeUrlW;
2023-09-22 10:06:11 +00:00
} else if (that.withdrawType === this.WithdrawTypeEnum.ALIPAY.type) { // 支付宝
2023-09-06 16:15:00 +00:00
if (value.name.length === 0) {
return this.$util.Tips({
title: '请填写账号'
});
}
form.accountNo = value.name;
form.accountQrCodeUrl = this.qrcodeUrlZ;
}
2023-09-06 16:15:00 +00:00
if (value.money.length === 0) {
return this.$util.Tips({
title: '请填写提现金额'
});
}
if (!(/^(\d?)+(\.\d{0,2})?$/.test(value.money))) {
return this.$util.Tips({
title: '提现金额保留2位小数'
});
}
if (value.money < that.minPrice) {
return this.$util.Tips({
title: '提现金额不能低于' + that.minPrice
});
}
form.price = value.money * 100;
if (this.isCommitted === false){
this.isCommitted=true;
BrokerageAPI.createBrokerageWithdraw(form).then(res => {
return this.$util.Tips({
title: "提现成功",
icon: 'success'
},{ tab: 2, url: '/pages/users/user_spread_user/index' });
}).catch(err => {
this.isCommitted=false;
2023-09-06 16:15:00 +00:00
return this.$util.Tips({
title: err
});
2020-08-13 08:12:57 +00:00
});
}
2023-09-06 16:15:00 +00:00
},
fen2yuan(price) {
return Util.fen2yuan(price)
},
2020-08-13 08:12:57 +00:00
}
}
</script>
<style lang="scss">
page {
background-color: #fff !important;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav {
height: 130rpx;
box-shadow: 0 10rpx 10rpx #f8f8f8;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav .item {
font-size: 26rpx;
flex: 1;
text-align: center;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav .item~.item {
border-left: 1px solid #f0f0f0;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav .item .iconfont {
width: 40rpx;
height: 40rpx;
border-radius: 50%;
border: 2rpx solid $theme-color;
2020-08-13 08:12:57 +00:00
text-align: center;
line-height: 37rpx;
margin: 0 auto 6rpx auto;
font-size: 22rpx;
box-sizing: border-box;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav .item .iconfont.on {
background-color: $theme-color;
2020-08-13 08:12:57 +00:00
color: #fff;
border-color: $theme-color;
2020-08-13 08:12:57 +00:00
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav .item .line {
width: 2rpx;
height: 20rpx;
margin: 0 auto;
transition: height 0.3s;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .nav .item .line.on {
height: 39rpx;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list {
padding: 0 30rpx;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .item {
border-bottom: 1rpx solid #eee;
min-height: 28rpx;
2020-08-13 08:12:57 +00:00
font-size: 30rpx;
color: #333;
padding: 39rpx 0;
2020-08-13 08:12:57 +00:00
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .item .name {
width: 130rpx;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .item .input {
width: 505rpx;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .item .input .placeholder {
color: #bbb;
}
2023-09-06 16:15:00 +00:00
.cash-withdrawal .wrapper .list .item .picEwm,.cash-withdrawal .wrapper .list .item .pictrue{
width:140rpx;
height:140rpx;
border-radius:3rpx;
position: relative;
margin-right: 23rpx;
}
2023-09-06 16:15:00 +00:00
.cash-withdrawal .wrapper .list .item .picEwm image{
width:100%;
height:100%;
border-radius:3rpx;
}
2023-09-06 16:15:00 +00:00
.cash-withdrawal .wrapper .list .item .picEwm .icon-guanbi1{
position:absolute;
right: -14rpx;
top: -16rpx;
font-size:40rpx;
}
2023-09-06 16:15:00 +00:00
.cash-withdrawal .wrapper .list .item .pictrue{
border:1px solid rgba(221,221,221,1);
font-size:22rpx;
color: #BBBBBB;
}
2023-09-06 16:15:00 +00:00
.cash-withdrawal .wrapper .list .item .pictrue .icon-icon25201{
font-size: 47rpx;
color: #DDDDDD;
margin-bottom: 3px;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .tip {
font-size: 26rpx;
color: #999;
margin-top: 25rpx;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .bnt {
font-size: 32rpx;
color: #fff;
width: 690rpx;
height: 90rpx;
text-align: center;
border-radius: 50rpx;
line-height: 90rpx;
margin: 64rpx auto;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .tip2 {
font-size: 26rpx;
color: #999;
text-align: center;
margin: 44rpx 0 20rpx 0;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .value {
height: 135rpx;
line-height: 135rpx;
border-bottom: 1rpx solid #eee;
width: 690rpx;
margin: 0 auto;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .value input {
font-size: 80rpx;
color: #282828;
height: 135rpx;
text-align: center;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.cash-withdrawal .wrapper .list .value .placeholder2 {
color: #bbb;
}
2023-09-06 16:15:00 +00:00
2020-08-13 08:12:57 +00:00
.price {
color: $theme-color;
}
</style>