积分兑换

This commit is contained in:
shijingjing
2022-11-22 19:12:07 +08:00
parent 7c490b9c5a
commit b0996d57f9
3 changed files with 138 additions and 28 deletions

View File

@@ -0,0 +1,31 @@
<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>