bank-card.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <view class="bank-card">
  3. <view class="bank-box u-flex-col u-row-center" v-if="bankdata.bank_name && bankdata.bank_no">
  4. <view class="bank-name" style="margin-bottom: 30rpx;">{{bankdata.bank_type_name}}</view>
  5. <view class="bank-num u-flex">
  6. <view v-for="(a,b) in 3" :key="b" class="num-doc u-flex">
  7. <text v-for="(c,d) in 4" :key="d"></text>
  8. </view>
  9. <view class="num">
  10. {{bankdata.bank_no.substring(bankdata.bank_no.length - 4)}}
  11. </view>
  12. </view>
  13. <view class="jiebang" @click="jiebang">解绑</view>
  14. </view>
  15. <view class="not-bank u-flex-col u-col-center" v-else>
  16. <text>暂未绑定银行卡</text>
  17. <text @click="toadd">绑定银行卡</text>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import {
  23. getBank,
  24. deleteBank
  25. } from "@/units/inquire.js"
  26. export default {
  27. data() {
  28. return {
  29. bankdata: {}
  30. }
  31. },
  32. onLoad() {
  33. },
  34. onShow() {
  35. this.getdata()
  36. },
  37. methods: {
  38. jiebang() {
  39. uni.showModal({
  40. title: "提示",
  41. content: "确定解绑吗",
  42. success: (e) => {
  43. if (e.confirm) {
  44. uni.showLoading({
  45. mask: true,
  46. title: "请稍后"
  47. })
  48. deleteBank().then(res => {
  49. this.$u.toast(res.msg)
  50. if (res.code == 1) {
  51. setTimeout(() => {
  52. this.getdata()
  53. }, 800)
  54. }
  55. })
  56. }
  57. }
  58. })
  59. },
  60. toadd() {
  61. uni.navigateTo({
  62. url: "/pagesD/bank-add"
  63. })
  64. },
  65. getdata() {
  66. getBank().then(res => {
  67. this.bankdata = res.data || {}
  68. })
  69. },
  70. }
  71. }
  72. </script>
  73. <style lang="scss">
  74. .bank-card {
  75. padding: 0 32rpx;
  76. box-sizing: border-box;
  77. .bank-box {
  78. width: 686rpx;
  79. height: 200rpx;
  80. background: #0C66C2;
  81. border-radius: 16rpx;
  82. margin: 20rpx auto;
  83. padding: 0 60rpx;
  84. position: relative;
  85. box-sizing: border-box;
  86. .jiebang {
  87. position: absolute;
  88. bottom: 0;
  89. right: 0;
  90. width: 68rpx;
  91. line-height: 32rpx;
  92. background: rgba(255, 255, 255, 0.2);
  93. border-radius: 16rpx 0rpx 16rpx 0rpx;
  94. text-align: center;
  95. font-size: 20rpx;
  96. font-family: PingFangSC-Regular, PingFang SC;
  97. font-weight: 400;
  98. color: #F7F7F7;
  99. }
  100. .bank-num {
  101. .num {
  102. font-size: 30rpx;
  103. font-family: JDZhengHT-Regular, JDZhengHT;
  104. font-weight: 400;
  105. color: #F7F7F7;
  106. }
  107. .num-doc {
  108. margin-right: 12rpx;
  109. text {
  110. width: 12rpx;
  111. height: 12rpx;
  112. background: #FFFFFF;
  113. opacity: 0.3;
  114. border-radius: 100rpx;
  115. margin-right: 8rpx;
  116. }
  117. }
  118. }
  119. .bank-qiye {
  120. margin-bottom: 24rpx;
  121. text:first-child {
  122. font-size: 20rpx;
  123. font-family: PingFangSC-Regular, PingFang SC;
  124. font-weight: 400;
  125. color: #F7F7F7;
  126. margin-right: 12rpx;
  127. opacity: 0.6;
  128. }
  129. text:last-child {
  130. font-size: 20rpx;
  131. font-family: PingFangSC-Regular, PingFang SC;
  132. font-weight: 400;
  133. color: #F7F7F7;
  134. }
  135. }
  136. .bank-type {
  137. font-size: 20rpx;
  138. font-family: PingFangSC-Regular, PingFang SC;
  139. font-weight: 400;
  140. color: #F7F7F7;
  141. margin-bottom: 16rpx;
  142. opacity: 0.6;
  143. }
  144. .bank-name {
  145. font-size: 26rpx;
  146. font-family: PingFangSC-Medium, PingFang SC;
  147. font-weight: 500;
  148. color: #F7F7F7;
  149. }
  150. }
  151. .not-bank {
  152. padding: 134rpx 0;
  153. text:first-child {
  154. font-size: 40rpx;
  155. font-family: PingFangSC-Medium, PingFang SC;
  156. font-weight: 500;
  157. color: #333333;
  158. margin-bottom: 110rpx;
  159. }
  160. text:last-child {
  161. width: 602rpx;
  162. line-height: 96rpx;
  163. background: #0C66C2;
  164. border-radius: 20rpx;
  165. text-align: center;
  166. font-size: 36rpx;
  167. font-family: PingFangSC-Medium, PingFang SC;
  168. font-weight: 500;
  169. color: #FFFFFF;
  170. }
  171. }
  172. }
  173. </style>