wallet.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="text1">我的余额(元)</view>
  5. <view class="hflex acenter " style="box-sizing: border-box;padding: 0 28rpx 20rpx;">
  6. <view class="money">{{money}}</view>
  7. <view class="money_btn" @click="toWithdraw">提现</view>
  8. </view>
  9. <view class="bottom hflex acenter jbetween" @click="toBank">
  10. <view class="bottom_left">银行卡(张)<span class="bottom_num">{{bankNum?bankNum:''}} </span></view>
  11. <u-icon name="arrow-right" color="#fff" size="16"></u-icon>
  12. </view>
  13. </view>
  14. <view class="list">
  15. <view class="list_title">收支明细</view>
  16. <block v-for="(item,index) in pageList" :key="index">
  17. <view class="list_item hflex acenter jbetween">
  18. <view class="vflex">
  19. <view class="text_style1">{{item.title}}</view>
  20. <view class="text_style2">{{item.create_at}}</view>
  21. </view>
  22. <view class="text_style3">-{{item.change}}</view>
  23. </view>
  24. </block>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import $api from '@/static/js/api.js'
  30. var that = ''
  31. export default {
  32. data() {
  33. return {
  34. money: '0.00',
  35. pageList: [],
  36. bankNum:'',
  37. page: 1,
  38. total: 1
  39. }
  40. },
  41. onLoad() {
  42. that = this
  43. that.getList()
  44. },
  45. methods: {
  46. getList() {
  47. $api.req({
  48. url: '/data/api.business.User/user_amount',
  49. // method: 'POST',
  50. data: {
  51. page: that.page
  52. }
  53. }, function(res) {
  54. if(res.code == 1) {
  55. that.money = res.data.money
  56. that.pageList = res.data.list
  57. that.total = res.data.page.total
  58. that.bankNum = res.data.bank_nunm
  59. }
  60. })
  61. },
  62. // 去提现
  63. toWithdraw() {
  64. $api.jump('/pages/mine/wallet/withdraw')
  65. },
  66. toBank() {
  67. $api.jump('/pages/mine/wallet/bankList')
  68. }
  69. },
  70. }
  71. </script>
  72. <style lang="scss" scoped>
  73. .content {
  74. padding: 20rpx 30rpx 0;
  75. .top {
  76. width: 100%;
  77. height: 284rpx;
  78. box-sizing: border-box;
  79. padding: 25rpx 0;
  80. background: url('/static/images/mine/amount_bg.png') no-repeat;
  81. background-size: 100% 100%;
  82. .text1 {
  83. box-sizing: border-box;
  84. padding: 0 28rpx ;
  85. font-size: 24rpx;
  86. color: #fff;
  87. margin-bottom: 24rpx;
  88. }
  89. .money {
  90. font-size: 52rpx;
  91. color: #fff;
  92. margin-right: 36rpx;
  93. }
  94. .money_btn {
  95. width: 132rpx;
  96. height: 48rpx;
  97. border-radius: 34rpx;
  98. border: 1rpx solid #fff;
  99. text-align: center;
  100. line-height: 48rpx;
  101. font-size: 26rpx;
  102. color: #fff;
  103. }
  104. .bottom {
  105. padding: 28rpx 28rpx 0;
  106. border-top: 1rpx solid #fff;
  107. .bottom_left {
  108. font-size: 26rpx;
  109. font-weight: 400;
  110. color: #FFFFFF;
  111. line-height: 36rpx;
  112. }
  113. .bottom_num {
  114. font-size: 46rpx;
  115. font-weight: bold;
  116. color: #FFFFFF;
  117. line-height: 36rpx;
  118. }
  119. }
  120. }
  121. .list {
  122. width: 100%;
  123. margin-top: 36rpx;
  124. .list_title {
  125. font-size: 30rpx;
  126. color: #333;
  127. }
  128. .list_item {
  129. width: 100%;
  130. box-sizing: border-box;
  131. padding: 28rpx 0;
  132. border-bottom: 1rpx solid #f4f4f4;
  133. .text_style1 {
  134. font-size: 26rpx;
  135. color: #666;
  136. margin-bottom: 8rpx;
  137. }
  138. .text_style2 {
  139. font-size: 22rpx;
  140. color: #bfbfbf;
  141. }
  142. .text_style3 {
  143. color: #ff2626;
  144. font-size: 30rpx;
  145. }
  146. }
  147. .list_item:nth-last-child(1) {
  148. border-bottom: none;
  149. }
  150. }
  151. }
  152. </style>