酒店桌布为微信小程序
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

<template>
<view>
<navbar title="我的优惠劵" leftClick @leftClick="$utils.navigateBack" />
<couponList ref="couponList"/>
</view>
</template>
<script>
import couponList from '@/components/user/couponList.vue'
export default {
components : {
couponList,
},
data() {
return {
}
},
onShow() {
this.$refs.couponList.getData()
},
methods: {
}
}
</script>
<style>
</style>