jifen-list.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view class="content">
  3. <view class="list" v-if="list.length > 0">
  4. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  5. <view class="item-left vflex">
  6. <text>{{item.remark}}</text>
  7. <text>{{item.created_at}}</text>
  8. </view>
  9. <view class="item-right" :class="item.amount > 0 ? '' : 'item-right2'">
  10. {{item.amount > 0 ? '+' + item.amount : item.amount}}
  11. </view>
  12. </view>
  13. </view>
  14. <view class="hflex acenter jcenter " style="height: 100vh;" v-else>
  15. <u-empty mode="data"></u-empty>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import $api from '@/static/js/api.js'
  21. export default {
  22. data() {
  23. return {
  24. list: [],
  25. page: 1,
  26. last_page: 1
  27. }
  28. },
  29. onLoad() {
  30. this.getlist()
  31. },
  32. onReachBottom() {
  33. if (this.page < this.last_page) {
  34. this.page++
  35. this.getlist()
  36. } else {
  37. uni.$u.toast('已经到底了')
  38. return
  39. }
  40. },
  41. methods: {
  42. getlist() {
  43. var _this = this
  44. $api.req({
  45. url: 'finance',
  46. data: {
  47. is_page: 1,
  48. page: _this.page,
  49. limit: 10,
  50. }
  51. }, function(res) {
  52. if (res.code == 10000) {
  53. _this.list = _this.list.concat(res.data.list)
  54. _this.last_page = res.data.last_page
  55. }
  56. })
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss">
  62. .content {
  63. min-height: 100vh;
  64. background: #FFFFFF;
  65. .list {
  66. padding: 10rpx 28rpx;
  67. .list-item {
  68. padding: 22rpx 0;
  69. border-bottom: 1px solid #F3F3F3;
  70. .item-left {
  71. text:first-child {
  72. font-size: 32rpx;
  73. font-family: SFPro, SFPro;
  74. font-weight: 400;
  75. color: #222222;
  76. }
  77. text:last-child {
  78. font-size: 24rpx;
  79. font-family: SFPro, SFPro;
  80. font-weight: 400;
  81. color: #222222;
  82. padding: 10rpx 0 0;
  83. }
  84. }
  85. .item-right {
  86. font-size: 36rpx;
  87. font-family: JDZhengHT, JDZhengHT;
  88. font-weight: 400;
  89. color: #E02020;
  90. }
  91. .item-right2 {
  92. font-size: 36rpx;
  93. font-family: JDZhengHT, JDZhengHT;
  94. font-weight: 400;
  95. color: #B4B4B4 !important;
  96. }
  97. }
  98. }
  99. }
  100. </style>