balanceDetail.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <template>
  2. <view class="detail">
  3. <!-- 顶部tab -->
  4. <view class="tab">
  5. <text :class="{ selected: selected == '' }" @click="swcthTab('')">{{
  6. i18n.whole
  7. }}</text>
  8. <text
  9. :class="{ selected: selected == 'income' }"
  10. @click="swcthTab('income')"
  11. >{{ i18n.income }}</text
  12. >
  13. <text
  14. :class="{ selected: selected == 'consume' }"
  15. @click="swcthTab('consume')"
  16. >{{ i18n.expenditure }}</text
  17. >
  18. </view>
  19. <!-- 顶部tab -->
  20. <view class="content">
  21. <!-- 余额明细 -->
  22. <MoneyDetail
  23. v-for="(item, index) in moneyDetail"
  24. :itemInfo="item"
  25. :key="index"
  26. />
  27. <!-- 余额明细 -->
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import MoneyDetail from "../mineComponent/moneyDetail/index.vue";
  33. export default {
  34. components: {
  35. MoneyDetail,
  36. },
  37. data() {
  38. return {
  39. selected: "", //判断选中某个tab栏
  40. page: 1,
  41. total: 0,
  42. //存放余额明细数据
  43. moneyDetail: [],
  44. type: "",
  45. };
  46. },
  47. computed: {
  48. i18n() {
  49. return this.$t("index");
  50. },
  51. },
  52. onReachBottom() {
  53. //商品总数量小于当前获取到的商品数量
  54. if (this.total > this.moneyDetail.length) {
  55. this.page++;
  56. this.getMoneyList();
  57. }
  58. },
  59. onLoad(options) {
  60. this.type = options.type;
  61. if (this.type == "balance") {
  62. uni.setNavigationBarTitle({
  63. title: "余额明细",
  64. });
  65. } else {
  66. uni.setNavigationBarTitle({
  67. title: this.i18n.depositDetails,
  68. });
  69. }
  70. },
  71. methods: {
  72. swcthTab(num) {
  73. this.selected = num;
  74. this.getMoneyList(1);
  75. },
  76. //获取余额明细
  77. getMoneyList(value) {
  78. uni.$u.http
  79. .get(
  80. `/api/finance?is_page=1&page=${this.page}&limit=10&account_type=${this.type}&type=${this.selected}`
  81. )
  82. .then((res) => {
  83. //判断是否为触底加载 不是直接赋值,是则连接两个数组,value存在则为筛选
  84. if (this.moneyDetail.length == 0 || value) {
  85. this.moneyDetail = res.data;
  86. } else {
  87. this.moneyDetail = this.moneyDetail.concat(res.data);
  88. }
  89. this.total = res.total;
  90. });
  91. },
  92. },
  93. mounted() {
  94. this.getMoneyList();
  95. },
  96. };
  97. </script>
  98. <style lang="scss" scoped>
  99. .detail {
  100. width: 100%;
  101. background-color: #fff;
  102. .tab {
  103. display: flex;
  104. justify-content: space-around;
  105. align-items: center;
  106. color: rgba(34, 34, 34, 0.6);
  107. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  108. height: 90rpx;
  109. }
  110. .selected {
  111. color: #222;
  112. font-weight: 600;
  113. position: relative;
  114. }
  115. .selected::before {
  116. content: "";
  117. display: block;
  118. height: 4rpx;
  119. background-color: #f83224;
  120. width: 100%;
  121. position: absolute;
  122. bottom: -24rpx;
  123. }
  124. .content {
  125. padding: 0 32rpx;
  126. }
  127. }
  128. </style>