wallet.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="text1">我的余额(元)</view>
  5. <view class="hflex acenter ">
  6. <view class="money">{{money}}</view>
  7. <view class="money_btn" @click="toWithdraw">提现</view>
  8. </view>
  9. </view>
  10. <view class="list">
  11. <view class="list_title">收支明细</view>
  12. <block v-for="(item,index) in pageList" :key="index">
  13. <view class="list_item hflex acenter jbetween">
  14. <view class="vflex">
  15. <view class="text_style1">{{item.name}}</view>
  16. <view class="text_style2">{{item.date}}</view>
  17. </view>
  18. <view class="text_style3">-{{item.money}}</view>
  19. </view>
  20. </block>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import $api from '@/static/js/api.js'
  26. var that = ''
  27. export default {
  28. data() {
  29. return {
  30. money: '348.98',
  31. pageList: [
  32. {
  33. id: 1,
  34. name: '银行卡提现',
  35. date: '2022-11-01 16:58:00',
  36. money: '79.34'
  37. },
  38. {
  39. id: 2,
  40. name: '银行卡提现',
  41. date: '2022-11-01 16:58:00',
  42. money: '79.34'
  43. }
  44. ]
  45. }
  46. },
  47. onLoad() {
  48. that = this
  49. },
  50. methods: {
  51. // 去提现
  52. toWithdraw() {
  53. $api.jump('/page_mine/pages/wallet/withdrawal')
  54. }
  55. },
  56. }
  57. </script>
  58. <style lang="scss" scoped>
  59. .content {
  60. padding: 20rpx 30rpx 0;
  61. .top {
  62. width: 100%;
  63. height: 244rpx;
  64. box-sizing: border-box;
  65. padding: 56rpx 40rpx 0;
  66. background: url('/static/images/comment/bg.png') no-repeat;
  67. background-size: 100%;
  68. .text1 {
  69. font-size: 24rpx;
  70. color: #fff;
  71. margin-bottom: 24rpx;
  72. }
  73. .money {
  74. font-size: 64rpx;
  75. color: #fff;
  76. margin-right: 36rpx;
  77. }
  78. .money_btn {
  79. width: 132rpx;
  80. height: 48rpx;
  81. border-radius: 34rpx;
  82. border: 1rpx solid #fff;
  83. text-align: center;
  84. line-height: 48rpx;
  85. font-size: 26rpx;
  86. color: #fff;
  87. }
  88. }
  89. .list {
  90. width: 100%;
  91. margin-top: 36rpx;
  92. .list_title {
  93. font-size: 30rpx;
  94. color: #333;
  95. }
  96. .list_item {
  97. width: 100%;
  98. box-sizing: border-box;
  99. padding: 28rpx 0;
  100. border-bottom: 1rpx solid #f4f4f4;
  101. .text_style1 {
  102. font-size: 26rpx;
  103. color: #666;
  104. margin-bottom: 8rpx;
  105. }
  106. .text_style2 {
  107. font-size: 22rpx;
  108. color: #bfbfbf;
  109. }
  110. .text_style3 {
  111. color: #ff2626;
  112. font-size: 30rpx;
  113. }
  114. }
  115. .list_item:nth-last-child(1) {
  116. border-bottom: none;
  117. }
  118. }
  119. }
  120. </style>