points-details.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!-- 积分明细 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="header">
  5. <view class="tab-list">
  6. <view :class="{ 'active' : isActive === index }" class="child" v-for="(item,index) in navList"
  7. :key="index" @click="checked(index)">
  8. {{item.title}}
  9. </view>
  10. </view>
  11. </view>
  12. <!-- 全部积分 -->
  13. <view v-if="isActive == 0">
  14. <view class="list">
  15. <view class="list-label">
  16. 本月积分 <text>98</text>
  17. </view>
  18. <view class="item">
  19. <view class="item-top-content">
  20. <view class="item-top">
  21. <text>消费购物</text>
  22. <text class="numadd">+20</text>
  23. </view>
  24. <view class="item-bottom" @click="toggleDescription">
  25. <text>2020-02-24 14:3:23</text>
  26. <view class="more-row">
  27. 更多
  28. <image :class="isShowAllContent ? 'sanjiaoSelect' : 'sanjiao'"
  29. src="../../../static/sanjiao-bottomgray.png" mode="widthFix"></image>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="item-bottom-content" v-if="isShowAllContent">
  34. <text>兑换流水号</text>
  35. <text>54222456289621</text>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <!-- 已使用 -->
  41. <view v-if="isActive == 1">
  42. <view class="list">
  43. <view class="list-label">
  44. 2020年12月 <text>-98</text>
  45. </view>
  46. <view class="item">
  47. <view class="item-top-content">
  48. <view class="item-top">
  49. <text>消费抵用现金额度9.8</text>
  50. <text class="numless">-880</text>
  51. </view>
  52. <view class="item-bottom" @click="toggleDescription">
  53. <text>2020-02-24 14:3:23</text>
  54. <view class="more-row">
  55. 更多
  56. <image :class="isShowAllContent ? 'sanjiaoSelect' : 'sanjiao'"
  57. src="../../../static/sanjiao-bottomgray.png" mode="widthFix"></image>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="item-bottom-content" v-if="isShowAllContent">
  62. <text>兑换流水号</text>
  63. <text>54222456289621</text>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. </template>
  70. <script>
  71. export default {
  72. data() {
  73. return {
  74. //选项卡
  75. isActive: 0,
  76. navList: [{
  77. index: 0,
  78. title: '全部积分',
  79. }, {
  80. index: 1,
  81. title: "已使用",
  82. }],
  83. //展开收起
  84. isShowAllContent: false
  85. }
  86. },
  87. methods: {
  88. //选项卡
  89. checked(index) {
  90. this.isActive = index
  91. },
  92. //展开收起
  93. toggleDescription: function() {
  94. if (this.isShowAllContent) {
  95. this.isShowAllContent = false
  96. } else {
  97. this.isShowAllContent = true
  98. }
  99. },
  100. }
  101. }
  102. </script>
  103. <style scoped lang="scss">
  104. @import "./points-details.css";
  105. </style>