mine.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. onShow() {
  54. this.getUserInfo()
  55. this.getHistory()
  56. },
  57. onLoad() {
  58. this.getUserInfo()
  59. this.getHistory()
  60. },
  61. methods: {
  62. // 获取会员信息
  63. getUserInfo() {
  64. this.request("/user/index", {}, "GET").then(res => {
  65. if (res.code === 1) {
  66. this.userInfo = res.data
  67. }
  68. })
  69. },
  70. // 获取金额日志
  71. getHistory() {
  72. this.request("/user_money_controller/log", {
  73. page: this.page,
  74. limit: this.limit
  75. }, "GET").then(res => {
  76. if (res.code === 1) {
  77. this.history = res.data.data
  78. }
  79. })
  80. },
  81. // 点击提现
  82. withdrawal() {
  83. uni.navigateTo({
  84. url: './Withdrawal'
  85. })
  86. }
  87. }
  88. }
  89. </script>
  90. <style lang="scss">
  91. .content {
  92. padding-top: 40rpx;
  93. }
  94. .card {
  95. width: 93%;
  96. height: 300rpx;
  97. margin: 0 auto;
  98. border-radius: 40rpx;
  99. display: flex;
  100. flex-direction: column;
  101. align-items: center;
  102. justify-content: space-around;
  103. padding: 40rpx;
  104. background-image: url("http://pet.hdlkeji.com/assets/static/1/16.png");
  105. background-size: 100% 100%;
  106. .title {
  107. width: 100%;
  108. font-weight: bold;
  109. }
  110. .big {
  111. font-size: 50rpx;
  112. }
  113. .btn {
  114. background-color: #111111;
  115. color: #F6B301;
  116. padding: 10rpx 30rpx;
  117. border-radius: 20rpx;
  118. }
  119. }
  120. .list {
  121. width: 100%;
  122. padding: 20rpx 30rpx;
  123. margin-top: 30rpx;
  124. background-color: #fff;
  125. border-radius: 40rpx 40rpx 0 0;
  126. min-height: 75vh;
  127. .title {
  128. font-size: 40rpx;
  129. font-weight: bold;
  130. }
  131. .row {
  132. border-bottom: 1rpx #eee solid;
  133. padding: 10rpx 0;
  134. }
  135. .list-box {
  136. .icon {
  137. width: 10%;
  138. }
  139. .text {
  140. width: 70%;
  141. }
  142. .money {
  143. width: 20%;
  144. }
  145. }
  146. }
  147. </style>