bankList.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="content">
  3. <view class="box vflex acenter jcenter" v-if="pageList.length == 0">
  4. <view class="tips_img">
  5. <image src="/static/images/mine/tips_yellow.png" class="img"></image>
  6. </view>
  7. <view class="text_style1">您还未绑定银行卡</view>
  8. </view>
  9. <view class="vflex" v-else>
  10. <block v-for="(item,index) in pageList" :key="index">
  11. <view class="box1" @click="open(item.id)">
  12. <view class="hflex">
  13. <!-- <image :src="item.icon" class="bank_info"></image> -->
  14. <view class="name">{{item.card_name}}</view>
  15. </view>
  16. <view class="card">{{item.id_card}}</view>
  17. </view>
  18. </block>
  19. </view>
  20. <view class="add hflex acenter jcenter" @click="add">
  21. <u-icon name="plus-circle" color="#506DFF" size="19"></u-icon>
  22. <view class="add_text">去添加</view>
  23. </view>
  24. <u-popup :show="show" :round="10" mode="bottom" @close="close">
  25. <view class="popu">
  26. <view class="popu_text hflex acenter jcenter" @click="delbank">解除绑定</view>
  27. <view class="popu_btn hflex acenter jcenter" @click="close">取消</view>
  28. </view>
  29. </u-popup>
  30. </view>
  31. </template>
  32. <script>
  33. import $api from '@/static/js/api.js'
  34. var that = ''
  35. export default {
  36. data() {
  37. return {
  38. pageList: [
  39. ],
  40. show: false,
  41. id: ''
  42. }
  43. },
  44. onLoad() {
  45. that = this
  46. that.getBank()
  47. },
  48. methods: {
  49. getBank() {
  50. $api.req({
  51. url: '/data/api.auth.Center/mybanklist',
  52. method: 'POST'
  53. }, function(res) {
  54. if(res.code == 1) {
  55. console.log(res);
  56. that.pageList = res.data
  57. for(var i=0;i<res.data.length;i++) {
  58. that.pageList[i].id_card = res.data[i].id_card.replace(/(?<=\d{0})\d+(?=\d{4})/,"**** **** **** ")
  59. }
  60. console.log(that.pageList);
  61. }
  62. })
  63. },
  64. add() {
  65. $api.jump('/page_mine/pages/wallet/add')
  66. },
  67. open(id) {
  68. that.id = id
  69. that.show = true
  70. },
  71. close() {
  72. that.show = false
  73. },
  74. delbank() {
  75. $api.req({
  76. url: '/data/api.auth.Center/delbank',
  77. method: 'POST',
  78. data: {
  79. id: that.id
  80. }
  81. }, function(res) {
  82. if(res.code == 1) {
  83. that.close()
  84. $api.info(res.info)
  85. that.getBank()
  86. }
  87. })
  88. }
  89. },
  90. }
  91. </script>
  92. <style lang="scss" scoped>
  93. .content {
  94. background: #F5F5F5;
  95. padding: 0 30rpx;
  96. .box {
  97. .tips_img {
  98. margin: 68rpx auto 28rpx;
  99. .img {
  100. width: 64rpx;
  101. height: 64rpx;
  102. }
  103. }
  104. .text_style1 {
  105. font-size: 32rpx;
  106. font-weight: 400;
  107. color: #222222;
  108. line-height: 44rpx;
  109. padding-bottom: 56rpx;
  110. }
  111. }
  112. .box1 {
  113. width: 100%;
  114. height: 200rpx;
  115. background: #506DFF;
  116. border-radius: 12rpx;
  117. margin-top: 20rpx;
  118. box-sizing: border-box;
  119. padding: 36rpx 40rpx 0;
  120. .bank_info {
  121. width: 52rpx;
  122. height: 52rpx;
  123. }
  124. .name {
  125. font-size: 28rpx;
  126. font-weight: 500;
  127. color: #FFFFFF;
  128. line-height: 40rpx;
  129. padding-left: 20rpx;
  130. }
  131. .card {
  132. // vertical-align:middle;
  133. padding-top: 34rpx;
  134. font-size: 48rpx;
  135. font-weight: 400;
  136. color: #FFFFFF;
  137. padding-left: 32rpx;
  138. }
  139. }
  140. .add {
  141. margin-top: 20rpx;
  142. width: 100%;
  143. height: 136rpx;
  144. background: #FFFFFF;
  145. border-radius: 12rpx;
  146. .add_text {
  147. font-size: 36rpx;
  148. font-weight: 400;
  149. color: #506DFF;
  150. line-height: 50rpx;
  151. padding-left: 6rpx;
  152. }
  153. }
  154. .popu {
  155. width: 100%;
  156. height: 316rpx;
  157. background: #FFFFFF;
  158. border-radius: 40rpx 40rpx 0px 0px;
  159. .popu_text {
  160. font-size: 32rpx;
  161. font-weight: 400;
  162. color: #000000;
  163. line-height: 44rpx;
  164. padding: 52rpx 0 60rpx;
  165. }
  166. .popu_btn {
  167. margin: 0 auto;
  168. width: 650rpx;
  169. height: 80rpx;
  170. background: #F4F4F4;
  171. border-radius: 52rpx;
  172. font-size: 28rpx;
  173. font-weight: 400;
  174. color: #222222;
  175. }
  176. }
  177. }
  178. </style>