add.vue 3.2 KB

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