historyCoupon.vue 474 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <u-subsection :list="list" mode="subsection" :current="current" @change="sectionChange"></u-subsection>
  4. <u-empty mode="coupon" text="还没有券哦">
  5. </u-empty>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. list: ['已使用', '已过期'],
  13. current: 0,
  14. }
  15. },
  16. methods: {
  17. sectionChange(e) {
  18. this.current = e
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>