mine.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="content">
  3. <view class="card">
  4. <view class="title">
  5. 总资产
  6. </view>
  7. <view class="row">
  8. <view class="big">
  9. {{userInfo.money}}
  10. </view>
  11. <view class="btn" @click="withdrawal">
  12. 提现
  13. </view>
  14. </view>
  15. </view>
  16. <view class="list">
  17. <view class="title">
  18. 余额明细
  19. </view>
  20. <view class="list-box">
  21. <view class="row" v-for="(item,index) in history" :key="index">
  22. <view class="icon">
  23. <image src="http://pet.hdlkeji.com/assets/static/1/79.png" class="mine-icon"></image>
  24. </view>
  25. <view class="text">
  26. <view class="">
  27. {{item.type_text}}
  28. </view>
  29. <view class="">
  30. {{item.createtime}}
  31. </view>
  32. </view>
  33. <view class="number">
  34. {{item.money}}
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. // 用户信息
  46. userInfo: {},
  47. // 钱包历史
  48. history: [],
  49. page: 1,
  50. limit: 20
  51. }
  52. },
  53. onLoad() {
  54. this.getUserInfo()
  55. this.getHistory()
  56. },
  57. methods: {
  58. // 获取会员信息
  59. getUserInfo() {
  60. this.request("/user/index", {}, "GET").then(res => {
  61. if (res.code === 1) {
  62. this.userInfo = res.data
  63. }
  64. })
  65. },
  66. // 获取金额日志
  67. getHistory() {
  68. this.request("/user_money_controller/log", {
  69. page: this.page,
  70. limit: this.limit
  71. }, "GET").then(res => {
  72. if (res.code === 1) {
  73. this.history = res.data.data
  74. }
  75. })
  76. },
  77. // 点击提现
  78. withdrawal() {
  79. uni.navigateTo({
  80. url: './Withdrawal'
  81. })
  82. }
  83. }
  84. }
  85. </script>
  86. <style lang="scss">
  87. .content {
  88. padding-top: 40rpx;
  89. }
  90. .card {
  91. width: 93%;
  92. height: 300rpx;
  93. margin: 0 auto;
  94. border: 1px #999 solid;
  95. border-radius: 40rpx;
  96. display: flex;
  97. flex-direction: column;
  98. align-items: center;
  99. justify-content: space-around;
  100. padding: 40rpx;
  101. .title {
  102. width: 100%;
  103. font-weight: bold;
  104. }
  105. .big {
  106. font-size: 50rpx;
  107. }
  108. .btn {
  109. background-color: #111111;
  110. color: #F6B301;
  111. padding: 10rpx 30rpx;
  112. border-radius: 20rpx;
  113. }
  114. }
  115. .list {
  116. width: 93%;
  117. margin: 0 auto;
  118. margin-top: 30rpx;
  119. .title {
  120. font-size: 40rpx;
  121. font-weight: bold;
  122. }
  123. .row {
  124. border-bottom: 1rpx #eee solid;
  125. padding: 10rpx 0;
  126. }
  127. .list-box {
  128. .icon {
  129. width: 10%;
  130. }
  131. .text {
  132. width: 70%;
  133. }
  134. .money {
  135. width: 20%;
  136. }
  137. }
  138. }
  139. </style>