bankList.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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">
  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" @open="open">
  25. <view class="popu">
  26. <view class="popu_text hflex acenter jcenter">解除绑定</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. }
  42. },
  43. onLoad() {
  44. that = this
  45. that.getBank()
  46. },
  47. methods: {
  48. getBank() {
  49. $api.req({
  50. url: '/data/api.auth.Center/mybanklist',
  51. method: 'POST'
  52. }, function(res) {
  53. if(res.code == 1) {
  54. console.log(res);
  55. that.pageList = res.data
  56. for(var i=0;i<res.data.length;i++) {
  57. that.pageList[i].id_card = res.data[i].id_card.replace(/(?<=\d{0})\d+(?=\d{4})/,"**** **** **** ")
  58. }
  59. console.log(that.pageList);
  60. }
  61. })
  62. },
  63. add() {
  64. $api.jump('/page_mine/pages/wallet/add')
  65. },
  66. open() {
  67. that.show = true
  68. },
  69. close() {
  70. that.show = false
  71. }
  72. },
  73. }
  74. </script>
  75. <style lang="scss" scoped>
  76. .content {
  77. background: #F5F5F5;
  78. padding: 0 30rpx;
  79. .box {
  80. .tips_img {
  81. margin: 68rpx auto 28rpx;
  82. .img {
  83. width: 64rpx;
  84. height: 64rpx;
  85. }
  86. }
  87. .text_style1 {
  88. font-size: 32rpx;
  89. font-weight: 400;
  90. color: #222222;
  91. line-height: 44rpx;
  92. padding-bottom: 56rpx;
  93. }
  94. }
  95. .box1 {
  96. width: 100%;
  97. height: 200rpx;
  98. background: #506DFF;
  99. border-radius: 12rpx;
  100. margin-top: 20rpx;
  101. box-sizing: border-box;
  102. padding: 36rpx 40rpx 0;
  103. .bank_info {
  104. width: 52rpx;
  105. height: 52rpx;
  106. }
  107. .name {
  108. font-size: 28rpx;
  109. font-weight: 500;
  110. color: #FFFFFF;
  111. line-height: 40rpx;
  112. padding-left: 20rpx;
  113. }
  114. .card {
  115. // vertical-align:middle;
  116. padding-top: 34rpx;
  117. font-size: 48rpx;
  118. font-weight: 400;
  119. color: #FFFFFF;
  120. padding-left: 32rpx;
  121. }
  122. }
  123. .add {
  124. margin-top: 20rpx;
  125. width: 100%;
  126. height: 136rpx;
  127. background: #FFFFFF;
  128. border-radius: 12rpx;
  129. .add_text {
  130. font-size: 36rpx;
  131. font-weight: 400;
  132. color: #506DFF;
  133. line-height: 50rpx;
  134. padding-left: 6rpx;
  135. }
  136. }
  137. .popu {
  138. width: 100%;
  139. height: 316rpx;
  140. background: #FFFFFF;
  141. border-radius: 40rpx 40rpx 0px 0px;
  142. .popu_text {
  143. font-size: 32rpx;
  144. font-weight: 400;
  145. color: #000000;
  146. line-height: 44rpx;
  147. padding: 52rpx 0 60rpx;
  148. }
  149. .popu_btn {
  150. margin: 0 auto;
  151. width: 650rpx;
  152. height: 80rpx;
  153. background: #F4F4F4;
  154. border-radius: 52rpx;
  155. font-size: 28rpx;
  156. font-weight: 400;
  157. color: #222222;
  158. }
  159. }
  160. }
  161. </style>