jilu.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="">
  3. <view v-for="(item,index) in list" :key="index" class="u-flex u-row-between" style="height: 126rpx;border-bottom: 2rpx solid #F8F8FB;padding: 0 32rpx;background-color: #fff;">
  4. <view class="u-flex-col">
  5. <text style="font-size: 28rpx;color: #666666;margin-bottom: 4rpx;">{{item.statusMessage}}</text>
  6. <text style="font-size: 24rpx;color: #666666;">{{item.finishedTime}}</text>
  7. </view>
  8. <view style="font-size: 32rpx;color: #333333;">¥{{item.brokerAmount}}</view>
  9. </view>
  10. <view style="height: 80vh;" v-if="list.length == 0" class="u-flex-col u-col-center u-row-center">
  11. <image style="width: 176rpx;height: 176rpx;margin-bottom: 40rpx;" src="../../static/img/jilu-not.png" mode=""></image>
  12. <text style="font-size: 28rpx;color: #CCCCCC;">您当前还没有</text>
  13. <text style="font-size: 28rpx;color: #CCCCCC;">转账记录</text>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. page: 1,
  22. list: []
  23. }
  24. },
  25. onLoad() {
  26. this.getdata()
  27. },
  28. methods: {
  29. getdata() {
  30. this.$http.transList({
  31. pageNo: this.page
  32. }).then(res => {
  33. this.list = this.list.concat(res.data.result.records)
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. </style>