| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 |
- <template>
- <view class="content">
- <uni-notice-bar single="true" text="每月25~28号可提现上月结算收益"></uni-notice-bar>
- <view class="withdrawal-money">
- <view class="icon">{{ money }}</view>
- <text class="text">可提现金额</text>
- </view>
- <view class="navbar">
- <view v-for="(item, index) in navList" :key="index" class="nav-item"
- :class="{ current: tabCurrentIndex === index }" @click="tabClick(index)">{{ item.text }}</view>
- </view>
- <swiper :current="tabCurrentIndex" class="swiper-box" duration="300" @change="changeTab">
- <swiper-item class="tab-content" v-for="(tabItem, tabIndex) in navList" :key="tabIndex">
- <view class="row b-b">
- <text class="tit">姓名</text>
- <input class="input" v-model="tabItem.orderList.name" type="text" placeholder="提款人姓名"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b" v-if="tabIndex==0">
- <text class="tit">账号</text>
- <input class="input" v-model="tabItem.orderList.code" type="text" placeholder="请输入账号"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b" v-if="tabIndex==1">
- <text class="tit">银行卡号</text>
- <input class="input" v-model="tabItem.orderList.code" type="text" placeholder="请输入银行卡号"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b" v-if="tabIndex==2">
- <text class="tit">微信号</text>
- <input class="input" v-model="tabItem.orderList.code" type="text" placeholder="请输入微信号"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b" v-if="tabIndex == 1">
- <text class="tit">所属银行</text>
- <input class="input" v-model="tabItem.orderList.bankName" type="text" placeholder="请输入所属银行"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b">
- <text class="tit">电话号码</text>
- <input class="input" v-model="tabItem.orderList.phone" type="text" placeholder="请输入电话号码"
- placeholder-class="placeholder" />
- </view>
- <view class="row-box">
- <view class="title">提现金额</view>
- <view class="row">
- <text class="tit">¥</text>
- <input class="input" type="number" v-model="withdrawal" :placeholder="'提现金额不得少于'+minPrice+'元'"
- placeholder-class="placeholder" />
- <view class="buttom" @click="withdrawalAll">全部提现</view>
- </view>
- </view>
- </swiper-item>
- </swiper>
- <button class="add-btn up" @click="confirm">提交申请</button>
- </view>
- </template>
- <script>
- import {
- aliInfo,
- bankInfo,
- setAliInfo,
- setBankInfo,
- extractBank,
- extractCash
- } from '@/api/wallet.js';
- import {
- getMoneyStyle
- } from '@/utils/rocessor.js';
- import uniNoticeBar from '@/components/uni-notice-bar/uni-notice-bar.vue';
- export default {
- filters: {
- getMoneyStyle
- },
- components: {
- uniNoticeBar
- },
- data() {
- return {
- type: 'alipay', //提现方式
- withdrawal: '', //提现金额
- minPrice: '', //最少提现金额
- money: '0.00', //可提现金额
- freeze: '0.0', //冻结金额
- tabCurrentIndex: 0,
- navList: [{
- state: 0,
- text: '支付宝',
- loadingType: 'more',
- orderList: {
- name: '',
- code: '',
- id: '',
- phone: ''
- }
- },
- {
- state: 1,
- text: '银行卡',
- loadingType: 'more',
- orderList: {
- name: '',
- code: '',
- bankName: '',
- id: '',
- phone: ''
- }
- },
- {
- state: 2,
- text: '微信',
- loadingType: 'more',
- orderList: {
- name: '',
- code: '',
- id: ''
- }
- }
- ]
- };
- },
- onLoad(options) {
- this.loadData();
- },
- watch: {
- tabCurrentIndex(newValue, oldValue) {
- console.log(newValue);
- if (newValue == 0) {
- this.type = 'alipay'
- }
- if (newValue == 1) {
- this.type = 'bank'
- }
- if (newValue == 2) {
- this.type = 'weixin'
- }
- console.log(this.type);
- }
- },
- methods: {
- // 加载余额信息
- async loadData() {
- extractBank({}).then(({
- data
- }) => {
- console.log('data.broken_commission', data.broken_commission);
- this.money = parseFloat(data.brokerage_price);
- this.minPrice = data.minPrice;
- this.freeze = data.incommissionCount;
- });
- },
- //swiper 切换
- changeTab(e) {
- this.tabCurrentIndex = e.target.current;
- },
- //顶部tab点击
- tabClick(index) {
- this.tabCurrentIndex = index;
- },
- // 全部提现
- withdrawalAll() {
- console.log('点击全部提现');
- this.withdrawal = parseInt(this.money / 100) * 100
- },
- // 提交保存
- confirm() {
- let obj = this;
- if (obj.withdrawal % 100 !== 0) {
- this.$api.msg('提现金额不得少于100元');
- return
- } else {
- // 获取当前选中的对象
- let arr = obj.navList[obj.tabCurrentIndex].orderList;
- let data = {
- extract_type: this.type, //bank -银行卡 alipay-支付宝 weixin-微信
- money: this.withdrawal, //金额
- money_type: 0, //0佣金1余额
- name: arr.name,
- phone: arr.phone
- };
- // 判断是否为支付宝
- if (obj.tabCurrentIndex == 0) {
- if (arr.code == '') {
- this.$api.msg('必须填写支付宝账号');
- return;
- }
- data.alipay_code = arr.code;
- }
- // 判断是否为银行卡
- if (obj.tabCurrentIndex == 1) {
- if (arr.code == '') {
- this.$api.msg('必须填写银行卡账号');
- return;
- }
- if (arr.bankName == '') {
- this.$api.msg('必须填写所属银行');
- return;
- }
- data.bankname = arr.bankName;
- data.cardnum = arr.code;
- }
- // 判断是否微信
- if (obj.tabCurrentIndex == 2) {
- if (arr.code == '') {
- this.$api.msg('必须填写微信账号');
- return;
- }
- data.weixin = arr.code;
- }
- if (arr.name == '') {
- this.$api.msg('必须填写姓名');
- return;
- }
- if (arr.phone == '') {
- this.$api.msg('必须填写电话号码');
- return;
- }
- if (this.withdrawal < this.minPrice) {
- this.$api.msg('提现金额必须大于' + this.minPrice);
- return;
- }
- uni.showModal({
- title: '提示',
- content: '请仔细查看银行卡号和支付宝账号无误并与本人名称一致,商家会在1-3个工作日转账至您本人账户',
- success: function(res) {
- if (res.confirm) {
- console.log('用户点击确定');
- extractCash(data)
- .then(e => {
- uni.showToast({
- title: '提交成功',
- duration: 2000,
- position: 'top'
- });
- uni.navigateTo({
- url: '/pages/award/award'
- });
- })
- .catch(e => {
- console.log();
- });
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- },
- fail: function(err) {
- console.log(err)
- }
- });
- }
- },
- /* 保存银行卡详细 */
- setBankInfo(obj) {
- setBankInfo(obj)
- .then(e => {
- uni.showToast({
- title: '修改成功',
- duration: 2000,
- position: 'top'
- });
- this.$api.prePage().dataUp();
- })
- .catch(e => {
- console.log(e);
- });
- },
- // 修改支付宝信息
- setAliInfo(obj) {
- setAliInfo(obj)
- .then(e => {
- uni.showToast({
- title: '修改成功',
- duration: 2000,
- position: 'top'
- });
- this.$api.prePage().dataUp();
- })
- .catch(e => {
- console.log(e);
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .row {
- display: flex;
- align-items: center;
- position: relative;
- padding: 0 30rpx;
- height: 110rpx;
- background: #fff;
- .tit {
- flex-shrink: 0;
- width: 130rpx;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .input {
- flex: 1;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .iconlocation {
- font-size: 36rpx;
- color: $font-color-light;
- }
- }
- page,
- .content {
- background: $page-color-base;
- height: 100%;
- }
- .withdrawal-money {
- text-align: center;
- padding: 20rpx 0;
- background: #fff;
- margin: 20rpx 0;
- .icon {
- background-size: 100%;
- font-size: 42rpx;
- color: $font-color-dark;
- font-weight: bold;
- background-repeat: no-repeat;
- background-position: center;
- }
- .text {
- font-size: 28rpx;
- color: #666666;
- }
- }
- .swiper-box {
- height: 750rpx;
- }
- .navbar {
- display: flex;
- height: 40px;
- padding: 0 5px;
- background: #fff;
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
- position: relative;
- z-index: 10;
- .nav-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- font-size: 15px;
- color: $font-color-dark;
- position: relative;
- &.current {
- color: #FF0000;
- &:after {
- content: '';
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 44px;
- height: 0;
- border-bottom: 2px solid #fc2a3f;
- }
- }
- }
- }
- .add-btn {
- &.up {
- background-color: $base-color;
- 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;
- background: linear-gradient(0deg, rgba(250, 39, 64, 1), rgba(254, 85, 68, 1));
- border-radius: 40px;
- // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
- }
- .row-box {
- margin-top: 30rpx;
- padding: 20rpx 30rpx;
- background: #fff;
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- }
- .row {
- display: flex;
- align-items: center;
- position: relative;
- height: 80rpx;
- .tit {
- flex-shrink: 0;
- width: 40rpx;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .input {
- flex: 1;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .iconlocation {
- font-size: 36rpx;
- color: $font-color-light;
- }
- .buttom {
- color: #FF0000;
- // bgccolor: pink;
- font-size: $font-base;
- }
- }
- }
- </style>
|