31 lines
417 B
Vue
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> |