coupon.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <view class="list">
  13. <view class="item">
  14. <view class="left-sidebar">
  15. <text class="num">68</text>
  16. <text class="name">优惠券(元)</text>
  17. </view>
  18. <view class="right-sidebar">
  19. <view class="right-sidebar-column">
  20. <view class="full">满68可用</view>
  21. <view class="time">有效期:2021-11-30 23:59</view>
  22. <view class="row">
  23. 仅限购买限源预售商品
  24. <image src="../../../static/open.png" mode="widthFix"></image>
  25. </view>
  26. </view>
  27. <button type="default" class="btn">去使用</button>
  28. </view>
  29. </view>
  30. <view class="item">
  31. <view class="left-sidebar">
  32. <image src="../../../static/img-3.png" class="img" mode="heightFix"></image>
  33. <text class="name">个护299-100券</text>
  34. </view>
  35. <view class="right-sidebar">
  36. <view class="right-sidebar-column">
  37. <view class="full">¥68满200可用</view>
  38. <view class="time">
  39. <text>距开抢:</text>
  40. <view class="countdown">
  41. <text>02</text>
  42. <text>:</text>
  43. <text>41</text>
  44. <text>:</text>
  45. <text>13</text>
  46. </view>
  47. </view>
  48. </view>
  49. <button type="default" class="btn">提醒我</button>
  50. </view>
  51. </view>
  52. <view class="item">
  53. <view class="left-sidebar">
  54. <text class="num gray">68</text>
  55. <text class="name gray">优惠券(元)</text>
  56. </view>
  57. <view class="right-sidebar">
  58. <view class="right-sidebar-column">
  59. <view class="full gray">满68可用</view>
  60. <view class="time">有效期:2021-11-30 23:59</view>
  61. <view class="row">
  62. 仅限购买限源预售商品
  63. <image src="../../../static/open.png" mode="widthFix"></image>
  64. </view>
  65. </view>
  66. <button type="default" class="btn gray-bg">去使用</button>
  67. <image src="../../../static/already.png" class="already" mode="widthFix"></image>
  68. </view>
  69. </view>
  70. <!-- 无内容时显示 -->
  71. <!-- <view class="normal-box">
  72. <image src="../../../static/normal-5.png" mode="widthFix"></image>
  73. 暂无优惠券
  74. </view> -->
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. export default {
  80. data() {
  81. return {
  82. //选项卡
  83. isActive: 0,
  84. navList: [{
  85. index: 0,
  86. title: '未使用',
  87. }, {
  88. index: 1,
  89. title: "已使用",
  90. }],
  91. }
  92. },
  93. methods: {
  94. //选项卡
  95. checked(index) {
  96. this.isActive = index
  97. },
  98. }
  99. }
  100. </script>
  101. <style scoped lang="scss">
  102. @import "./coupon.css";
  103. </style>