bank-card.vue 3.7 KB

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