bankList.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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.bank}}</view>
  15. </view>
  16. <view class="card">{{item.number}}</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" :safeAreaInsetBottom="false">
  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. },
  47. onShow() {
  48. that.getBank()
  49. },
  50. methods: {
  51. getBank() {
  52. $api.req({
  53. url: '/data/api.business.User/user_bank',
  54. // method: 'POST'
  55. }, function(res) {
  56. if(res.code == 1) {
  57. that.pageList = res.data.list
  58. for(var i=0;i<res.data.list.length;i++) {
  59. that.pageList[i].number = res.data.list[i].number.substr(-4)
  60. that.pageList[i].number = "**** **** **** " + that.pageList[i].number
  61. }
  62. // console.log(that.pageList);
  63. }
  64. })
  65. },
  66. add() {
  67. $api.jump('/pages/mine/wallet/add')
  68. },
  69. open(id) {
  70. that.id = id
  71. that.show = true
  72. },
  73. close() {
  74. that.show = false
  75. },
  76. delbank() {
  77. $api.req({
  78. url: '/data/api.business.User/bank_del',
  79. method: 'POST',
  80. data: {
  81. bank_id: that.id
  82. }
  83. }, function(res) {
  84. if(res.code == 1) {
  85. that.close()
  86. $api.info(res.info)
  87. that.getBank()
  88. }
  89. })
  90. }
  91. },
  92. }
  93. </script>
  94. <style lang="scss" scoped>
  95. .content {
  96. background: #F5F5F5;
  97. padding: 0 30rpx;
  98. .box {
  99. .tips_img {
  100. margin: 68rpx auto 28rpx;
  101. .img {
  102. width: 64rpx;
  103. height: 64rpx;
  104. }
  105. }
  106. .text_style1 {
  107. font-size: 32rpx;
  108. font-weight: 400;
  109. color: #222222;
  110. line-height: 44rpx;
  111. padding-bottom: 56rpx;
  112. }
  113. }
  114. .box1 {
  115. width: 100%;
  116. height: 200rpx;
  117. background: #506DFF;
  118. border-radius: 12rpx;
  119. margin-top: 20rpx;
  120. box-sizing: border-box;
  121. padding: 36rpx 40rpx 0;
  122. .bank_info {
  123. width: 52rpx;
  124. height: 52rpx;
  125. }
  126. .name {
  127. font-size: 28rpx;
  128. font-weight: 500;
  129. color: #FFFFFF;
  130. line-height: 40rpx;
  131. padding-left: 20rpx;
  132. }
  133. .card {
  134. // vertical-align:middle;
  135. padding-top: 34rpx;
  136. font-size: 48rpx;
  137. font-weight: 400;
  138. color: #FFFFFF;
  139. padding-left: 32rpx;
  140. }
  141. }
  142. .add {
  143. margin-top: 20rpx;
  144. width: 100%;
  145. height: 136rpx;
  146. background: #FFFFFF;
  147. border-radius: 12rpx;
  148. .add_text {
  149. font-size: 36rpx;
  150. font-weight: 400;
  151. color: #506DFF;
  152. line-height: 50rpx;
  153. padding-left: 6rpx;
  154. }
  155. }
  156. .popu {
  157. width: 100%;
  158. height: 316rpx;
  159. background: #FFFFFF;
  160. border-radius: 40rpx 40rpx 0px 0px;
  161. .popu_text {
  162. font-size: 32rpx;
  163. font-weight: 400;
  164. color: #000000;
  165. line-height: 44rpx;
  166. padding: 52rpx 0 60rpx;
  167. }
  168. .popu_btn {
  169. margin: 0 auto;
  170. width: 650rpx;
  171. height: 80rpx;
  172. background: #F4F4F4;
  173. border-radius: 52rpx;
  174. font-size: 28rpx;
  175. font-weight: 400;
  176. color: #222222;
  177. }
  178. }
  179. }
  180. </style>