jifen.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view class="yongjin">
  3. <view class="yongjin-item u-flex" v-for="(item,index) in list" :key="index">
  4. <view class="left">
  5. ¥
  6. </view>
  7. <view class="right u-flex-1">
  8. <view class="u-flex u-row-between right1">
  9. <text>{{item.explain}}</text>
  10. <text>{{item.type == 1 ? '+' : '-'}}{{item.change_amount}}</text>
  11. </view>
  12. <view class="u-flex u-row-between right2">
  13. <text>{{item.create_at}}</text>
  14. <text>我的积分 {{item.amount}}</text>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. page: 1,
  25. list: []
  26. }
  27. },
  28. onLoad() {
  29. this.getlist()
  30. },
  31. onReachBottom() {
  32. if (this.list.length % 20 == 0) {
  33. this.page++
  34. this.getlist()
  35. }
  36. },
  37. methods: {
  38. getlist() {
  39. this.$u.get('/api/Member/integral_list', {
  40. page: this.page,
  41. page_num: 20
  42. }).then(res => {
  43. this.list = this.list.concat(res.data)
  44. })
  45. }
  46. }
  47. }
  48. </script>
  49. <style lang="scss">
  50. .yongjin {
  51. .yongjin-item {
  52. height: 164rpx;
  53. border-bottom: 2rpx solid rgba(245, 245, 245, 1);
  54. padding: 0 24rpx;
  55. .right {
  56. .right2 {
  57. text:first-child {
  58. font-size: 24rpx;
  59. font-family: PingFangSC-Regular, PingFang SC;
  60. font-weight: 400;
  61. color: #999999;
  62. }
  63. text:last-child {
  64. font-size: 24rpx;
  65. font-family: PingFangSC-Regular, PingFang SC;
  66. font-weight: 400;
  67. color: #999999;
  68. }
  69. }
  70. .right1 {
  71. margin-bottom: 4rpx;
  72. text:first-child {
  73. font-size: 28rpx;
  74. font-family: PingFangSC-Medium, PingFang SC;
  75. font-weight: 500;
  76. color: #333333;
  77. }
  78. text:last-child {
  79. font-size: 28rpx;
  80. font-family: PingFangSC-Medium, PingFang SC;
  81. font-weight: 500;
  82. color: #333333;
  83. }
  84. }
  85. }
  86. .left {
  87. text-align: center;
  88. width: 100rpx;
  89. line-height: 100rpx;
  90. border-radius: 100rpx;
  91. font-size: 60rpx;
  92. color: #fff;
  93. font-weight: bold;
  94. background-color: rgba(247, 164, 107, 1);
  95. margin-right: 32rpx;
  96. }
  97. }
  98. }
  99. </style>