123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <template>
- <view class="content">
- <view class="content-money">
- <view class="buttom">
- <text class="text">可提现金额</text>
- <view class="icon">
- <text>¥</text>
- {{ money }}
- </view>
- </view>
- <view class="interval"></view>
- <view class="buttom">
- <text class="text">申请提现金额</text>
- <view class=" icon">
- <input class="input" type="number" v-model="withdrawal" :placeholder="'最低提现金额' + minPrice + '元'" placeholder-class="placeholder" />
- </view>
- </view>
- <view class="interval"></view>
- <view class="tip">
- <text class="tip-text">申请提现金额</text>
- <view class=" tip-icon" @click="all()">全部提现</view>
- </view>
- </view>
- <!-- #ifndef MP-WEIXIN -->
- <view class="list">
- <radio-group @change="tabRadio">
- <label>
- <view class="box">
- <view class="icon iconfont iconweixin1"></view>
- <view class="title-box">
- <view class="title"><text>提现至微信</text></view>
- </view>
- <view class="right"><radio value="weixin" color="#5dbc7c" :checked="type == 'weixin'" /></view>
- </view>
- </label>
- <label>
- <view class="box">
- <view class="icon iconfont"><image class="icon-img" src="/static/icon/i8.png" mode="aspectFit"></image></view>
- <view class="title-box">
- <view class="title">
- <text v-if="bankData.bankno != null">{{ bankData.bank + ' ' + bankData.bankno }}</text>
- <text v-else>请创建银行账号</text>
- </view>
- <view class="node">
- <text v-if="bankData.fullname != null">真实姓名({{ bankData.fullname }})</text>
- </view>
- </view>
- <view class="right"><radio value="bank" color="#5dbc7c" :checked="type == 'bank'" /></view>
- </view>
- </label>
- </radio-group>
- </view>
- <!-- #endif -->
- <button class="add-btn up" @click="confirm">提交申请</button>
- <button class="add-btn modified" @click="navTo('/pages/money/account')">账号管理</button>
- </view>
- </template>
- <script>
- import { getMoneyStyle } from '@/utils/rocessor.js';
- import { extractCash, extractBank, aliInfo, bankInfo } from '@/api/wallet.js';
- import { mapState, mapMutations } from 'vuex';
- export default {
- data() {
- return {
- type: 'alipay', //提现方式
- money: '', //可提现金额
- withdrawal: '', //提现金额
- minPrice: '', //最少提现金额
- coldMoney: '', //冻结中的金额
- aliData: { fullname: '', alino: '' },
- bankData: { fullname: '', bank: '', bankno: '' },
- // #ifdef H5
- weichatBsrowser: false
- // #endif
- };
- },
- computed: {
- ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin']),
- moneyMin() {
- return '最低提现金额' + this.minPrice + '元';
- }
- },
- onShow(options) {
- // #ifdef H5
- this.weichatBsrowser = uni.getStorageSync('weichatBrowser');
- // #endif
- //加载提现信息
- this.loadData();
- // 加载提款账号信息
- this.aliData.fullname = this.userInfo.alipay_name;
- console.log(this.aliData.fullname);
- this.aliData.alino = this.userInfo.alipay_code;
- this.bankData.fullname = this.userInfo.bank_user_name;
- this.bankData.bank = this.userInfo.bank_name;
- this.bankData.bankno = this.userInfo.bank_code;
- },
- methods: {
- // 更新数据
- // dataUp() {
- // this.loadAli();
- // this.loadBank();
- // },
- //加载数据
- async loadAli(source) {
- aliInfo({}).then(e => {
- this.aliData = e.data;
- });
- },
- // 加载银行卡信息
- async loadBank() {
- bankInfo({}).then(e => {
- this.bankData = e.data;
- });
- },
- // 加载余额信息
- async loadData() {
- extractBank({}).then(({ data }) => {
- console.log(data);
- this.coldMoney = data.brokerage_price; //冻结中金额
- this.money = data.commissionCount * 1; //可提现余额
- this.minPrice = data.minPrice; //最小提现
- this.freeze = data.inmoneyCount; //提现中的余额
- });
- },
- // 跳转
- navTo(url) {
- uni.navigateTo({
- url: url
- });
- },
- all() {
- this.withdrawal = this.money;
- },
- // 切换选中对象
- tabRadio(e) {
- this.type = e.detail.value;
- },
- // 提交
- confirm() {
- console.log(this.withdrawal);
- if (this.withdrawal === '') {
- this.$api.msg('请填写需要提现的佣金');
- return;
- }
- if (this.withdrawal == 0) {
- this.$api.msg('提现佣金不能为0');
- return;
- }
- if (this.withdrawal < this.minPrice) {
- this.$api.msg('提现金额不能低于最小金额');
- return;
- }
- let data = {
- extract_type: this.type, //bank -银行卡 alipay-支付宝 weixin-微信
- money: this.withdrawal, //金额
- money_type: 'brokerage' //0佣金1余额
- };
- if (this.type == 'alipay') {
- data.name = this.aliData.fullname;
- data.alipay_code = this.aliData.alino;
- }
- if (this.type == 'bank') {
- data.name = this.bankData.fullname;
- data.bankname = this.bankData.bank;
- data.cardnum = this.bankData.bankno;
- }
- extractCash(data)
- .then(e => {
- uni.navigateTo({
- url: '/pages/money/success?type=1'
- });
- // uni.showToast({
- // title: '提交成功',
- // duration: 2000,
- // position: 'top'
- // });
- })
- .catch(e => {
- console.log();
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- height: 100%;
- }
- .content-money {
- padding: 0 20rpx;
- background-color: #ffffff;
- .buttom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 110rpx;
- }
- .interval {
- width: 100%;
- height: 1px;
- background: #e6e6e6;
- }
- .icon {
- font-size: 48rpx;
- font-family: SourceHanSansCN;
- font-weight: 500;
- color: #333333;
- text {
- font-size: 32rpx;
- }
- .input {
- text-align: right;
- flex: 1;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .iconlocation {
- text-align: right;
- font-size: 36rpx;
- color: $font-color-light;
- }
- }
- .text {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .tip {
- height: 74rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .tip-text {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .tip-icon {
- font-size: 26rpx;
- font-family: SourceHanSansCN;
- font-weight: 400;
- color: #438bed;
- }
- }
- }
- .add-btn {
- &.modified {
- color: #2ed8db;
- border:1px solid #2ed8db;
- }
- &.up {
- background: linear-gradient(90deg, #08c4e6, #50ead2);
- color: #fff;
- }
- display: flex;
- align-items: center;
- justify-content: center;
- width: 690rpx;
- height: 80rpx;
- margin: 0 auto;
- margin-top: 30rpx;
- font-size: $font-lg;
- border-radius: 10rpx;
- // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
- }
- .list {
- padding-left: 30rpx;
- margin-top: 30rpx;
- background-color: #ffffff;
- .box {
- display: flex;
- align-items: center;
- width: 100%;
- height: 120rpx;
- border-bottom: 1px solid $border-color-light;
- .icon {
- font-size: 48rpx;
- padding-right: 20rpx;
- .icon-img {
- height: 50rpx;
- width: 50rpx;
- }
- }
- .iconweixin1 {
- color: #18bf16;
- }
- .iconzhifubao {
- color: #08aaec;
- }
- .title-box {
- flex-grow: 1;
- text-align: left;
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-base;
- }
- .node {
- font-size: $font-sm;
- color: $font-color-light;
- }
- }
- }
- }
- /deep/ .uni-radio-input {
- width: 45rpx;
- height: 45rpx;
- }
- </style>
|