bank-add.vue 5.5 KB

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