cash-out.vue 5.94 KB
Newer Older
1 2
<template>
  <div class="cash-out">
leiqingsong's avatar
leiqingsong committed
3
    <van-cell-group style="margin-bottom: 10px">
leiqingsong's avatar
leiqingsong committed
4
      <van-cell is-link title="所属银行" :value="bank" @click="jumpToBank" />
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    </van-cell-group>
    <div class="detail">
      <p style="font-size: 24px">提现金额</p>
      <van-field v-model="money" type="number" label="¥" class="money" />
      <div class="remain">
        <span style="color: #666666"
          >可提现金额{{ remainMoney.toFixed(2) }}</span
        >
        <span class="all" @click="allIn">全部提现</span>
      </div>
      <div class="real">
        <p class="real-item">
          <span>实际到账</span>
          <span>94.19</span>
        </p>
        <p class="real-item">
          <span>税款</span>
          <span>6.34</span>
        </p>
        <p class="explain">
          <span>扣税说明</span>
          <img
            class="explain-img"
            src="@/assets/images/explain.png"
            alt="解释"
          />
        </p>
      </div>
    </div>
leiqingsong's avatar
leiqingsong committed
34 35 36 37 38
    <div style="padding: 10px 16px">
      <van-button type="primary" size="large" @click="onCashOut"
        >提现</van-button
      >
    </div>
39 40 41 42 43 44 45 46
    <base-dialog
      base-dialog-title="提现"
      base-dialog-btn="提交"
      :base-dialog-show="validCodeDialogShow"
      :base-dialog-show-close="true"
      @onClick="onSubmit"
    >
      <div slot="content">
leiqingsong's avatar
leiqingsong committed
47
        <p class="content-text">请输入手机号{{ userPhone }}的动态验证码</p>
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
        <van-field
          v-model="validCode"
          type="number"
          class="validCodeInput"
          placeholder="请输入"
        >
          <img
            slot="left-icon"
            class="valid-code"
            src="@/assets/images/验证码.png"
          />
        </van-field>
      </div>
    </base-dialog>
    <base-dialog
      :base-dialog-title="resultDialogTitle"
      :base-dialog-show="resultDialog"
      @onClick="onSuccess"
    >
      <div slot="content" style="text-align:center">
        <img :src="resultDialogImg" style="width: 70px; height: 76px" alt />
        <p style="margin:0;font-size:14px;color:#999999">
          {{ resultDialogTip }}
        </p>
      </div>
      <div></div>
    </base-dialog>
75 76 77 78
  </div>
</template>

<script>
leiqingsong's avatar
leiqingsong committed
79
import { getUserBankInfo, sendSms, cashOut } from "@/api/bank";
80
import BaseDialog from "@/components/BaseDialog.vue";
81
export default {
82
  components: { BaseDialog },
83 84 85
  name: "CashOut",
  data() {
    return {
leiqingsong's avatar
leiqingsong committed
86
      userPhone: "13100911369",
87
      bank: "",
leiqingsong's avatar
leiqingsong committed
88 89
      money: null,
      remainMoney: 100,
90 91 92 93
      resultDialogTitle: "",
      resultDialogTip: "",
      resultDialogImg: "",
      resultDialog: false,
leiqingsong's avatar
leiqingsong committed
94 95
      validCodeDialogShow: false,
      validCode: null
96 97
    };
  },
leiqingsong's avatar
leiqingsong committed
98 99 100
  created() {
    this.getUserInfo();
  },
101
  methods: {
leiqingsong's avatar
leiqingsong committed
102 103 104 105 106
    jumpToBank() {
      console.log("1");
      this.$router.push("/bank");
    },
    // 全部提现
107 108
    allIn() {
      this.money = this.remainMoney;
leiqingsong's avatar
leiqingsong committed
109
    },
leiqingsong's avatar
leiqingsong committed
110
    // 点击提现
leiqingsong's avatar
leiqingsong committed
111 112 113 114 115
    onCashOut() {
      if (!this.money) {
        this.$toast.fail("未输入提现金额");
        return;
      }
leiqingsong's avatar
leiqingsong committed
116

leiqingsong's avatar
leiqingsong committed
117
      const params = {
leiqingsong's avatar
leiqingsong committed
118 119 120
        userId: this.userPhone
      };
      sendSms(params).then();
leiqingsong's avatar
leiqingsong committed
121 122
      this.validCode = null;
      this.validCodeDialogShow = true;
123
    },
leiqingsong's avatar
leiqingsong committed
124 125 126 127 128 129 130 131 132 133
    getUserInfo() {
      const params = {
        userId: "13100911369"
      };
      getUserBankInfo(params).then(res => {
        if (res.code === 0) {
          this.bank = res.data.bankName;
        }
      });
    },
134 135
    onSubmit() {
      this.validCodeDialogShow = false;
leiqingsong's avatar
leiqingsong committed
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
      const params = {
        code: this.validCode,
        money: this.money
      };
      cashOut(params)
        .then(res => {
          this.resultDialog = true;
          if (res.code === 0) {
            this.resultDialogTitle = "提现成功";
            this.resultDialogTip = "提现成功,请及时查收";
            this.resultDialogImg = require("@/assets/images/成功.png");
          } else {
            this.resultDialogTitle = "提现失败";
            this.resultDialogTip = "提现失败,验证码错误";
            this.resultDialogImg = require("@/assets/images/叉号.png");
          }
        })
        .catch(err => {
          this.$toast.fail(err.response.data.error);
        });
156 157 158
    },
    onSuccess() {
      this.resultDialog = false;
159 160 161 162 163 164 165 166
    }
  }
};
</script>

<style lang="scss" scoped>
.cash-out {
  padding: 10px 0;
leiqingsong's avatar
leiqingsong committed
167
  font-family: PingFang-SC-Medium;
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
  .bank {
    ::v-deep .van-field__control {
      text-align: right;
    }
  }
  .detail {
    height: 380px;
    padding: 10px 16px;
    background-color: #ffffff;

    .money {
      box-sizing: border-box;
      margin: 0 0 10px;
      border-bottom: 1px solid #eeeeee;
      ::v-deep .van-field__label {
        width: 16px;
        height: 21px;
        font-size: 28px;
        line-height: 20px;
        color: #333333;
      }

      ::v-deep .van-field__control {
        font-size: 23px;
        color: #333333;
      }
    }

    .remain {
      padding: 10px 16px;
      font-size: 12px;

      .all {
        padding-left: 20px;
        color: #88c678;
      }
    }

    .real {
      padding: 10px 16px;
      font-size: 14px;
      background-color: #f9f9f9;
      .real-item {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
      }
      .explain {
        position: relative;
        span {
          color: #999999;
        }
        .explain-img {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 14px;
          height: 14px;
          margin-left: 8px;
        }
      }
    }
  }
}
233 234 235 236
.content-text {
  width: 185px;
  margin: 25px auto;
  text-align: center;
leiqingsong's avatar
leiqingsong committed
237
  font-family: PingFang-SC-Medium;
238 239 240
  font-size: 14px;
  color: #333333;
}
leiqingsong's avatar
leiqingsong committed
241 242 243 244 245
.validCodeInput {
  width: 245px;
  margin: 10px auto;
  background-color: #f9f9f9;
  border-radius: 20px;
246 247 248 249
  .van-field__left-icon {
    display: flex;
    align-items: center;
  }
leiqingsong's avatar
leiqingsong committed
250 251 252 253 254
  .valid-code {
    width: 16px;
    height: 18px;
  }
}
255
</style>