Files
dvcp_v2_wxcp_app/src/apps/AppIntegralExchange/AppIntegralExchange.vue
shijingjing b0996d57f9 积分兑换
2022-11-22 19:12:07 +08:00

31 lines
417 B
Vue

<template>
<div class="AppIntegralExchange">
<h1>积分兑换</h1>
<u-button @click="toDetail">详情</u-button>
</div>
</template>
<script>
export default {
appName: '积分兑换',
data() {
return {
}
},
methods: {
toDetail() {
uni.navigateTo({url: './commodityDetails'})
}
},
onShow() {
}
}
</script>
<style lang='scss' scoped>
.AppIntegralExchange {
}
</style>