123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- <template>
- <view class="container flex-center flex-column">
- <view class="addressBack-box">
- <view class="consignee-box bor-line-F7F7F7">
- <input
- v-model="balance" type="number" maxlength="9" class="fs28"
- placeholder-class="consignee"
- placeholder="提现金额(元)" @input="applycheck"
- />
- </view>
- <view class="bankTag-box bor-line-F7F7F7 flex-row-plus flex-sp-between flex-items" @click="bankTagClick">
- <view class="fs28 addressTag">银行卡</view>
- <view>
- <label v-model="cardNum">{{ cardNum }}</label>
- <image class="arrow mar-left-20" src="../../static/images/origin/arrow.png"></image>
- </view>
- </view>
- <view class="apply-box">
- <view class="apply-withdraw" @click="applyWithdraw">申请提现</view>
- </view>
- </view>
- <view class="withdraw-history">
- <view class="history-list">
- <view class="history-head">
- <label class="history-label fs30 font-color-333">历史记录</label>
- </view>
- <view v-for="(item, index) in withdrawHistoryList" :key="index" class="history-content">
- <view class="withdraw-detail flex-items flex-sp-between">
- <view class="detail-top">
- <view class="detail-bottom">
- <label v-if="item.state == 0" class="status fs28 font-color-333">审核中</label>
- <label v-else-if="item.state == 1" class="status fs28 font-color-333">通过</label>
- <label v-else-if="item.state == 2" class="status fs28 font-color-333">拒绝</label>
- </view>
- <view>
- <label class="cardnum fs24 font-color-999">银行卡号:{{ item.bankCard }}</label>
- </view>
- </view>
- <view>
- <label class="apply-balance">{{ item.withdrawalMoney }}</label>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 弹窗 -->
- <u-select
- v-model="bankTagShowFlag" mode="single-column" title="银行卡" :list="bankcardselectList"
- @confirm="bankcardConfirm"
- ></u-select>
- <!-- <u-select v-model="bankTagShowFlag" :default-value="choosedValueList" mode="single-column" :list="list"
- @confirm="bankcardConfirm" title="银行卡" value-name="id" label-name="cardNum"></u-select> -->
- </view>
- </template>
- <script>
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- import { getDistributorApi } from '../../api/user'
- export default {
- filters: {
- parseMoney(money) {
- return parseFloat(money / 100).toFixed(2)
- },
- parseStatus(status) {
- if (status == 0) {
- return '审核中'
- } else if (status == 1) {
- return '已通过'
- }
- return '已拒绝'
- }
- },
- data() {
- return {
- balance: '',
- cardNum: '',
- bankcardId: 0,
- bankName: '',
- bankTagShowFlag: false,
- choosedValueList: [ 0 ],
- bankcardList: [],
- withdrawHistoryList: [],
- bankcardselectList: [ { value: '', label: '' } ],
- price: 0
- }
- },
- onLoad(options) {
- this.initBankcardList()
- this.getBalance()
- },
- onShow() {
- },
- methods: {
- getBalance() {
- const _ = this
- getDistributorApi({}).then((res) => {
- _.price = res.data.price
- _.withdrawHistoryList = res.data.withdrawals
- })
- .catch((res) => {
- })
- },
- initBankcardList() {
- this.bankcardselectList = []
- NET.request(API.QueryBankcardList, {
- page: 1,
- pageSize: 100
- }, 'GET').then((res) => {
- this.bankcardList = res.data
- for (let i = 0; i < this.bankcardList.total; i++) {
- this.bankcardselectList.push({ value: this.bankcardList.list[i].bankName, label: this.bankcardList.list[i].bankCard })
- }
- })
- .catch((res) => {
- })
- },
- applycheck(e) {
- // 正则表达试
- e.target.value = e.target.value.match(/^\d*(\.?\d{0,2})/g)[0] || null
- // 重新赋值给input
- this.$nextTick(() => {
- this.balance = e.target.value
- })
- },
- applyWithdraw() {
- const _ = this
- if (this.balance === '') {
- uni.showToast({
- title: '提现金额不能为空',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.balance > this.price) {
- uni.showToast({
- title: '余额不足,请重新输入申请金额',
- duration: 2000,
- icon: 'none'
- })
- } else if (parseFloat(this.balance) > 1000000) {
- uni.showToast({
- title: '提现金额不能超过1000000',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.bankName == '' || this.bankName == null) {
- uni.showToast({
- title: '请选择银行卡',
- duration: 2000,
- icon: 'none'
- })
- } else {
- NET.request(API.MemberAccountWithdraw, {
- bankName: this.bankName,
- bankCard: this.cardNum,
- withdrawalMoney: this.balance
- }, 'POST').then((res) => {
- uni.showToast({
- title: '申请成功',
- duration: 2000,
- icon: 'none'
- })
- this.balance = ''
- this.getBalance()
- this.initBankcardList()
- })
- .catch((res) => {
- if (res.data && res.data.code == 40001) {
- uni.navigateTo({
- url: 'login'
- })
- } else if (res.data) {
- uni.showToast({
- title: res.data.msg,
- duration: 2000,
- icon: 'none'
- })
- }
- })
- }
- // else {
- // let dotPos = this.balance.indexOf(".")
- // let length = this.balance.length
- // console.log(dotPos,222)
- // console.log(length,333)
- // if (length - dotPos > 3) {
- // uni.showToast({
- // title: "提现金额只能精确到小数点后两位",
- // duration: 2000,
- // icon: 'none'
- // })
- // return
- // }
- // }
- },
- bankTagClick() {
- if (this.bankcardList.total > 0) {
- this.bankTagShowFlag = true
- } else {
- uni.showToast({
- title: '你还没有添加银行卡~',
- duration: 2000,
- icon: 'none'
- })
- setTimeout(function () {
- uni.navigateTo({
- url: 'addBankcard?withdraw=1'
- })
- }, 3000)
- }
- },
- bankcardConfirm(e) {
- this.cardNum = e[0].label
- this.bankName = e[0].value
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #F8F8F8;
- }
- .container {
- padding: 20rpx;
- .addressBack-box {
- background-color: #FFFFFF;
- padding: 30upx 30upx;
- .consignee-box {
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 20upx;
- .consignee {
- color: #999999;
- font-size: 28upx;
- }
- }
- .apply-withdraw {
- width: 100%;
- height: 100upx;
- line-height: 100upx;
- color: #FFEBC4;
- text-align: center;
- background: #333333;
- margin: 0 auto;
- margin-top: 20rpx;
- }
- .bankTag-box {
- margin-top: 19px;
- padding-bottom: 19px;
- .addressTag {
- color: #999999
- }
- .arrow {
- width: 16upx;
- height: 24upx;
- }
- }
- }
- .withdraw-history {
- margin-top: 14rpx;
- .history-list {
- background: white;
- padding: 30rpx;
- .history-label {
- height: 92rpx;
- line-height: 92rpx;
- }
- .history-content {
- border-top: 2rpx solid #F3F4F5;
- .withdraw-detail {
- height: 150rpx;
- .apply-balance {
- width: 160rpx;
- height: 58rpx;
- line-height: 58rpx;
- font-size: 24rpx;
- background: #EEEEEE;
- display: block;
- text-align: center;
- color: #999999;
- }
- }
- }
- }
- }
- }
- .content {
- font-size: 35rpx;
- width: 500rpx;
- .btn {
- margin-bottom: 20rpx;
- width: 200rpx;
- background-image: linear-gradient(135deg, #FFA100 10%, #FF7911 100%);
- }
- }
- </style>
|