report.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view class="app-container">
  3. <view class="card-container-c">
  4. <view class="card-container">
  5. <view class="top">
  6. <image src="@/static/bg_logo.png" class="bg"></image>
  7. <view class="title">
  8. <image src="@/static/mine/ranking/title_l.png"></image>
  9. <text>本月收益</text>
  10. <image src="@/static/mine/ranking/title_r.png"></image>
  11. </view>
  12. <view class="money"><text>{{detail.income}}</text>元</view>
  13. <view class="percent">超过本店99%的分销员</view>
  14. <view class="upDown" v-if="detail.upOrDown">
  15. <image src="@/static/mine/ranking/up.png"></image>
  16. <view>相比上一个月有所上升,继续加油哦!</view>
  17. </view>
  18. <view class="upDown" v-if="!detail.upOrDown">
  19. <image src="@/static/mine/ranking/down.png"></image>
  20. <view>相比上一个月有所上下降,继续加油哦!</view>
  21. </view>
  22. </view>
  23. <view class="bottom">
  24. <image :src="configInfo.minLogo2" mode="heightFix"></image>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="tips">统计时间:{{detail.startPeriod}} 至 {{detail.endPeriod}}</view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. configInfo: uni.getStorageSync('configInfo'),
  36. detail: {},
  37. }
  38. },
  39. onLoad() {
  40. this.getData();
  41. },
  42. methods: {
  43. // 获取数据
  44. getData() {
  45. this.$axios({
  46. url: '/user/rank',
  47. method: 'get',
  48. params: {}
  49. }).then(res => {
  50. this.detail = res.data;
  51. })
  52. },
  53. }
  54. }
  55. </script>
  56. <style lang="scss">
  57. .app-container {
  58. background: #F4F2F2;
  59. box-sizing: border-box;
  60. }
  61. .tips {
  62. font-size: 28rpx;
  63. line-height: 28rpx;
  64. color: #999999;
  65. text-align: center;
  66. margin: 60rpx 0 20rpx;
  67. }
  68. .card-container-c {
  69. padding: 40rpx 40rpx 0;
  70. }
  71. .card-container {
  72. width: 670rpx;
  73. border-radius: 20rpx;
  74. background: #FFFFFF;
  75. box-shadow: -20px 0px 40px 20px rgba(155,155,155,0.30);
  76. overflow: hidden;
  77. .top {
  78. background: #F65759;
  79. display: flex;
  80. flex-direction: column;
  81. align-items: center;
  82. height: 800rpx;
  83. position: relative;
  84. .bg {
  85. position: absolute;
  86. top: 140rpx;
  87. left: 35rpx;
  88. width: 600rpx;
  89. height: 600rpx;
  90. display: block;
  91. z-index: 0;
  92. }
  93. .title {
  94. display: flex;
  95. align-items: center;
  96. margin-top: 56rpx;
  97. image {
  98. width: 78rpx;
  99. height: 22rpx;
  100. display: block;
  101. }
  102. text {
  103. font-size: 50rpx;
  104. color: #FFFFFF;
  105. margin: 0 20rpx;
  106. line-height: 50rpx;
  107. }
  108. }
  109. .money {
  110. font-size: 40rpx;
  111. color: #FFFFFF;
  112. line-height: 80rpx;
  113. margin-top: 120rpx;
  114. text {
  115. display: inline-block;
  116. font-size: 80rpx;
  117. line-height: 80rpx;
  118. margin-right: 10rpx;
  119. }
  120. }
  121. .percent {
  122. font-size: 32rpx;
  123. color: #FFFFFF;
  124. margin-top: 10rpx;
  125. line-height: 32rpx;
  126. }
  127. .upDown {
  128. display: flex;
  129. flex-direction: column;
  130. align-items: center;
  131. margin-top: 110rpx;
  132. image {
  133. width: 124rpx;
  134. height: 80rpx;
  135. display: block;
  136. }
  137. view {
  138. font-size: 32rpx;
  139. color: #FFFFFF;
  140. margin-top: 26rpx;
  141. line-height: 32rpx;
  142. }
  143. }
  144. }
  145. .bottom {
  146. height: 140rpx;
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. image {
  151. height: 60rpx;
  152. display: block;
  153. }
  154. }
  155. }
  156. </style>