会员卡页面

This commit is contained in:
唐明明
2022-06-07 19:04:08 +08:00
parent 6a6cea4198
commit e48ff8b7ad
11 changed files with 2364 additions and 983 deletions

25
pages/account/dt.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<view>
账户
<button @click="onNav">充值</button>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
onNav(){
this.$Router.push({name: 'AccountRecharge'})
}
}
}
</script>
<style lang="scss">
</style>