bank-add.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="bank-add u-flex-col u-col-center">
  3. <view class="" style="text-align: left;width: 100%;">
  4. 只能绑定与实名账号一致的用户的银行卡
  5. </view>
  6. <view class="back">
  7. <view class="" style="margin-bottom: 40rpx;">
  8. <u-input placeholder="请输入银行卡卡号" border="none" style="margin-bottom: 40rpx;" v-model="bank_no">
  9. <u--text text="银行卡号" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  10. </u-input>
  11. </view>
  12. <view class="" style="margin-bottom: 40rpx;">
  13. <u-input placeholder="请输入开户行" border="none" v-model="bank_name">
  14. <u--text text="开户行" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  15. </u-input>
  16. </view>
  17. <view class="" style="margin-bottom: 40rpx;">
  18. <u-input placeholder="请输入持卡人姓名" border="none" v-model="bank_user">
  19. <u--text text="持卡人姓名" color="#000" slot="prefix" margin="0 3px 0 0"
  20. style="width: 188rpx;"></u--text>
  21. </u-input>
  22. </view>
  23. <view class="" style="margin-bottom: 40rpx;">
  24. <u-input placeholder="请输入银行预留号码" border="none" v-model="bank_mobile">
  25. <u--text text="手机号" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  26. </u-input>
  27. </view>
  28. <view class="" style="margin-bottom: 40rpx;">
  29. <u-input placeholder="请输入验证码" border="none" v-model="code">
  30. <u--text text="验证码" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  31. <template slot="suffix">
  32. <u-code ref="uCode" @change="codeChange" seconds="20" changeText="X秒重新获取"></u-code>
  33. <u-button @tap="getCode" :text="tips" type="success" size="large" :plain="true"
  34. customStyle="border:0rpx;color:#0C66C2">{{tips}}</u-button>
  35. </template>
  36. <!-- <text class="send" @click="getCode" v-if="!timeEnd && !verificationTime ">获取验证码</text>
  37. <text class="send" v-else-if="verificationTime">{{verificationTime}}s</text>
  38. <text class="send" @click="getCode" v-else-if="timeEnd">重新获取验证码</text> -->
  39. </u-input>
  40. </view>
  41. </view>
  42. <view class="add-btn" @click="save">
  43. 保存
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import {
  49. setBank,
  50. getCode
  51. } from "@/units/inquire.js"
  52. export default {
  53. data() {
  54. return {
  55. bank_name: "",
  56. bank_no: "",
  57. bank_user: "",
  58. bank_mobile: "",
  59. code: "",
  60. tips: "",
  61. }
  62. },
  63. onLoad() {
  64. },
  65. methods: {
  66. codeChange(text) {
  67. this.tips = text;
  68. },
  69. getCode() {
  70. if (!this.bank_no) {
  71. this.$u.toast('请填写银行卡号')
  72. return
  73. }
  74. if (!this.bank_name) {
  75. this.$u.toast('请填写银行名称')
  76. return
  77. }
  78. if (!this.bank_user) {
  79. this.$u.toast('请填写持卡人姓名')
  80. return
  81. }
  82. if (!this.bank_mobile) {
  83. this.$u.toast('请填写银行预留号码')
  84. return
  85. }
  86. getCode({
  87. mobile: this.bank_mobile,
  88. event: 'bindBankCard'
  89. }).then(res => {
  90. if (res.code == 1) {
  91. uni.showLoading({
  92. title: '正在获取验证码'
  93. })
  94. setTimeout(() => {
  95. uni.hideLoading();
  96. // 这里此提示会被this.start()方法中的提示覆盖
  97. uni.$u.toast('验证码已发送');
  98. // 通知验证码组件内部开始倒计时
  99. this.$refs.uCode.start();
  100. }, 2000);
  101. } else {
  102. uni.$u.toast('倒计时结束后再发送');
  103. }
  104. })
  105. },
  106. save() {
  107. if (!this.code) {
  108. this.$u.toast('请输入验证码')
  109. return
  110. }
  111. uni.showLoading({
  112. mask: true,
  113. title: "请稍后"
  114. })
  115. // 检验验证码
  116. check({
  117. mobile: this.bank_mobile,
  118. event: "bindBankCard",
  119. captcha: this.code
  120. }).then(res => {
  121. if (res.code == 1) {
  122. setBank({
  123. bank_name: this.bank_name,
  124. bank_no: this.bank_no,
  125. bank_user: this.bank_user,
  126. bank_mobile: this.bank_mobile,
  127. code: this.code
  128. }).then(res => {
  129. this.$u.toast(res.msg)
  130. if (res.code == 1) {
  131. setTimeout(() => {
  132. uni.navigateBack()
  133. }, 800)
  134. }
  135. })
  136. }
  137. })
  138. }
  139. },
  140. }
  141. </script>
  142. <style lang="scss">
  143. .bank-add {
  144. background: #F3F3F3;
  145. height: 100vh;
  146. padding: 20rpx 32rpx 0;
  147. box-sizing: border-box;
  148. .back {
  149. width: 686rpx;
  150. height: 442rpx;
  151. background: #FFFFFF;
  152. border-radius: 20rpx;
  153. padding: 36rpx 24rpx;
  154. box-sizing: border-box;
  155. margin-top: 20rpx;
  156. }
  157. .add-btn {
  158. height: 92rpx;
  159. background: #0C66C2;
  160. border-radius: 20rpx;
  161. margin-top: 60rpx;
  162. width: 100%;
  163. font-size: 36rpx;
  164. font-family: PingFangSC-Medium, PingFang SC;
  165. font-weight: 500;
  166. color: #FFFFFF;
  167. line-height: 92rpx;
  168. text-align: center;
  169. }
  170. }
  171. </style>
  172. <style scoped>
  173. ::v-deep .u-text__value {
  174. width: 188rpx;
  175. }
  176. </style>