bind-bank-card.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!-- 绑定银行卡 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="module">
  5. <view class="row">
  6. <view class="label">
  7. 真实姓名
  8. </view>
  9. <input type="text" v-model="params.real_name" class="input" placeholder="请输入真实姓名" placeholder-class="placeholder" />
  10. </view>
  11. <view class="row">
  12. <view class="label">
  13. 银行卡号
  14. </view>
  15. <input type="text" v-model="params.card_no" class="input" placeholder="请输入银行卡号" placeholder-class="placeholder" />
  16. </view>
  17. <view class="row">
  18. <view class="label">
  19. 银行名称
  20. </view>
  21. <input type="text" v-model="params.bank_name" class="input" placeholder="请输入银行名称" placeholder-class="placeholder" />
  22. </view>
  23. <view class="row">
  24. <view class="label">
  25. 手机号码
  26. </view>
  27. <input type="text" v-model="params.phone" class="input" placeholder="请输入手机号码" placeholder-class="placeholder" />
  28. <button v-if="countDown <= 0" @tap="sendSms()" type="default" class="get-code">发送验证码</button>
  29. <button v-else type="default" class="get-code">{{countDown}}秒后重发</button>
  30. </view>
  31. <view class="row">
  32. <view class="label">
  33. 验证码
  34. </view>
  35. <input type="text" v-model="params.code" class="input" placeholder="请输入验证码" placeholder-class="placeholder" />
  36. </view>
  37. </view>
  38. <view class="btn-box">
  39. <button type="default" class="active">立即绑定</button>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. import { generalSendSms, userCenterBindBankAccount } from '../../../common/service.js';
  45. import { validatorFun } from '../../../common/utils/util';
  46. export default {
  47. data() {
  48. return {
  49. params: {
  50. account_id: '', // 记录id(修改时必传)
  51. phone: '', // 手机号
  52. code: '', // 验证码
  53. real_name: '', // 真实姓名
  54. card_no: '', // 账号
  55. bank_name: '', // 所属银行
  56. },
  57. countDown: 0,
  58. }
  59. },
  60. methods: {
  61. bindBankAccount() {
  62. const params = this.params;
  63. const errList = validatorFun(params, [
  64. ['real_name', ['notNull', '请输入真实姓名']],
  65. ['card_no', ['notNull', '请输入银行卡号']],
  66. ['bank_name', ['notNull', '请输入银行名称']],
  67. ['phone', ['notNull', '请输入手机号码'], ['isMobile', '请输入正确手机号']],
  68. ['code', ['notNull', '请输入验证码']],
  69. ]);
  70. if (errList.length > 0) {
  71. return uni.showToast({
  72. icon: 'none',
  73. title: errList[0].errMsg,
  74. });
  75. }
  76. userCenterBindBankAccount({
  77. data: params,
  78. success: ({code, msg, data}) => {
  79. if (code == 1) {
  80. setTimeout(() => {
  81. uni.navigateBack({
  82. delta: 1,
  83. });
  84. }, 1000);
  85. }
  86. uni.showToast({
  87. icon: 'none',
  88. title: msg,
  89. });
  90. }
  91. });
  92. },
  93. sendSms() {
  94. const params = this.params;
  95. const errList = validatorFun(params, [
  96. ['phone', ['notNull', '请输入手机号'], ['isMobile', '请输入正确手机号']],
  97. ]);
  98. if (errList.length > 0) {
  99. return uni.showToast({
  100. icon: 'none',
  101. title: errList[0].errMsg,
  102. });
  103. }
  104. generalSendSms({
  105. data: {
  106. phone: params.phone,
  107. },
  108. success: ({code, msg, data}) => {
  109. if (code == 1) {
  110. this.countDownFn();
  111. }
  112. uni.showToast({
  113. icon: 'none',
  114. title: msg,
  115. });
  116. },
  117. });
  118. },
  119. countDownFn() {
  120. let num = 60;
  121. const fn = () => {
  122. if (num == 0) return;
  123. this.countDown = --num;
  124. setTimeout(() => fn(), 1000);
  125. };
  126. fn();
  127. },
  128. }
  129. }
  130. </script>
  131. <style scoped lang="scss">
  132. @import "./bind-bank-card.css";
  133. </style>