酒店桌布为微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
421 B

4 months ago
  1. <template>
  2. <view>
  3. <navbar title="我的优惠劵" leftClick @leftClick="$utils.navigateBack" />
  4. <couponList ref="couponList"/>
  5. </view>
  6. </template>
  7. <script>
  8. import couponList from '@/components/user/couponList.vue'
  9. export default {
  10. components : {
  11. couponList,
  12. },
  13. data() {
  14. return {
  15. }
  16. },
  17. onShow() {
  18. this.$refs.couponList.getData()
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>