add.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="title">请绑定本人银行卡</view>
  5. <view class="input_group">
  6. <view class="hflex acenter input_item">
  7. <view class="label">真实姓名</view>
  8. <u-input border="none" v-model="card_name" shape="circle" placeholder="请输入持卡人真实姓名" @change="change"></u-input>
  9. </view>
  10. <view class="hflex acenter input_item">
  11. <view class="label">银行卡号</view>
  12. <u-input border="none" v-model="card_no" shape="circle" placeholder="请输入持卡人本人银行卡号" @change="change" maxlength="30"></u-input>
  13. </view>
  14. <view class="hflex acenter input_item">
  15. <view class="label">银行名称</view>
  16. <u-input border="none" v-model="bank_name" shape="circle" placeholder="请填写银行名称" @change="change" maxlength="30"></u-input>
  17. </view>
  18. <view class="hflex acenter input_item">
  19. <view class="label">开户行</view>
  20. <u-input border="none" v-model="bank_addr" shape="circle" placeholder="请输入开户行具体到支行" @change="change" maxlength="30"></u-input>
  21. </view>
  22. </view>
  23. <view class="read">请仔细阅读并充分理解<span class="text_blue">用户服务协议</span></view>
  24. <view class="btn hflex acenter jcenter" :class="!allow?'btn2':''" @click="bind">同意协议并绑定</view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import $api from '@/static/js/api.js'
  30. var that = ''
  31. export default {
  32. data() {
  33. return {
  34. card_no: '',
  35. card_name: '',
  36. allow: false,
  37. bank_name: '',
  38. bank_addr: ''
  39. }
  40. },
  41. onLoad() {
  42. that = this
  43. },
  44. methods: {
  45. inputCard(e) {
  46. var l = e.replace(/\s*/g, '')
  47. if (l.length % 4 == 0) {
  48. e = e + ' '
  49. }
  50. that.card_no = e
  51. // that.card_no = e.replace(/\s/g, ' ').replace(/[^\d]/g, ' ').replace(/(\d{4})(?=\d)/g, '$1')
  52. },
  53. change(e) {
  54. if(that.card_no != '' && that.card_name != '') {
  55. that.allow = true
  56. } else {
  57. that.allow = false
  58. }
  59. },
  60. bind() {
  61. $api.req({
  62. url: '/data/api.business.User/bank_add',
  63. method: 'POST',
  64. data: {
  65. bank: that.bank_name,
  66. number: that.card_no,
  67. address: that.bank_addr,
  68. real_name: that.card_name
  69. }
  70. }, function(res) {
  71. if(res.code == 1) {
  72. $api.info(res.info)
  73. $api.jump(-1)
  74. }
  75. })
  76. }
  77. },
  78. }
  79. </script>
  80. <style lang="scss" scoped>
  81. .content::v-deep {
  82. .box {
  83. width: 100%;
  84. box-sizing: border-box;
  85. padding: 0 50rpx;
  86. .title {
  87. font-size: 38rpx;
  88. font-weight: 500;
  89. color: #000000;
  90. line-height: 52rpx;
  91. padding: 42rpx 0 52rpx;
  92. }
  93. .card_input {
  94. .u-input {
  95. background-color: #F4F4F4;
  96. padding: 0 40rpx !important;
  97. height: 88rpx;
  98. }
  99. }
  100. .input_group {
  101. width: 100%;
  102. // height: 440rpx;
  103. background: #F6F6F6;
  104. border-radius: 24rpx;
  105. box-sizing: border-box;
  106. padding: 0 20rpx;
  107. .input_item {
  108. width: 100%;
  109. padding: 32rpx 0;
  110. border-bottom: 1rpx solid #EDEDED;
  111. .label {
  112. width: 150rpx;
  113. font-size: 30rpx;
  114. font-weight: 400;
  115. color: #333333;
  116. line-height: 42rpx;
  117. padding-right: 20rpx;
  118. }
  119. .right {
  120. font-size: 30rpx;
  121. font-weight: 500;
  122. color: #222222;
  123. line-height: 42rpx;
  124. }
  125. .code {
  126. font-size: 30rpx;
  127. font-weight: 500;
  128. color: #506DFF;
  129. line-height: 42rpx;
  130. }
  131. }
  132. .input_item:nth-last-child(1) {
  133. border: none;
  134. }
  135. }
  136. .read {
  137. padding-top: 28rpx;
  138. font-size: 22rpx;
  139. font-weight: 400;
  140. color: #222222;
  141. line-height: 32rpx;
  142. }
  143. .text_blue {
  144. color: #506DFF;
  145. }
  146. .btn {
  147. margin-top: 76rpx;
  148. width: 100%;
  149. height: 84rpx;
  150. background: #506DFF;
  151. border-radius: 52rpx;
  152. font-size: 36rpx;
  153. font-weight: 500;
  154. color: #FFFFFF;
  155. }
  156. .btn2 {
  157. background: #CFCFCF;
  158. }
  159. }
  160. }
  161. </style>