bank-add.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. } from "@/units/inquire.js"
  51. export default {
  52. data() {
  53. return {
  54. bank_name: "",
  55. bank_no: "",
  56. bank_user: "",
  57. bank_mobile: "",
  58. code: "",
  59. tips: "",
  60. }
  61. },
  62. onLoad() {
  63. },
  64. methods: {
  65. codeChange(text) {
  66. this.tips = text;
  67. },
  68. getCode() {
  69. getCode({
  70. mobile: this.bank_mobile,
  71. event: 'thirdmobile'
  72. }).then(res => {
  73. if (res.code == 1) {
  74. uni.showLoading({
  75. title: '正在获取验证码'
  76. })
  77. setTimeout(() => {
  78. uni.hideLoading();
  79. // 这里此提示会被this.start()方法中的提示覆盖
  80. uni.$u.toast('验证码已发送');
  81. // 通知验证码组件内部开始倒计时
  82. this.$refs.uCode.start();
  83. }, 2000);
  84. } else {
  85. uni.$u.toast('倒计时结束后再发送');
  86. }
  87. })
  88. },
  89. },
  90. save() {
  91. if (!this.bank_name) {
  92. this.$u.toast('请填写银行名称')
  93. return
  94. }
  95. if (!this.bank_no) {
  96. this.$u.toast('请填写银行卡号')
  97. return
  98. }
  99. if (!this.bank_user) {
  100. this.$u.toast('请填写持卡人姓名')
  101. return
  102. }
  103. if (!thisbank_mobile) {
  104. this.$u.toast('请填写银行预留号码')
  105. return
  106. }
  107. if (!thiscode) {
  108. this.$u.toast('请输入验证码')
  109. return
  110. }
  111. uni.showLoading({
  112. mask: true,
  113. title: "请稍后"
  114. })
  115. setBank({
  116. bank_name: this.bank_name,
  117. bank_no: this.bank_no,
  118. bank_user: this.bank_user,
  119. bank_mobile: this.bank_mobile,
  120. code: this.code
  121. }).then(res => {
  122. this.$u.toast(res.msg)
  123. if (res.code == 1) {
  124. setTimeout(() => {
  125. uni.navigateBack()
  126. }, 800)
  127. }
  128. })
  129. }
  130. }
  131. </script>
  132. <style lang="scss">
  133. .bank-add {
  134. background: #F3F3F3;
  135. height: 100vh;
  136. padding: 20rpx 32rpx 0;
  137. box-sizing: border-box;
  138. .back {
  139. width: 686rpx;
  140. height: 442rpx;
  141. background: #FFFFFF;
  142. border-radius: 20rpx;
  143. padding: 36rpx 24rpx;
  144. box-sizing: border-box;
  145. margin-top: 20rpx;
  146. }
  147. .add-btn {
  148. height: 92rpx;
  149. background: #0C66C2;
  150. border-radius: 20rpx;
  151. margin-top: 60rpx;
  152. width: 100%;
  153. font-size: 36rpx;
  154. font-family: PingFangSC-Medium, PingFang SC;
  155. font-weight: 500;
  156. color: #FFFFFF;
  157. line-height: 92rpx;
  158. text-align: center;
  159. }
  160. }
  161. </style>
  162. <style scoped>
  163. ::v-deep .u-text__value {
  164. width: 188rpx;
  165. }
  166. </style>