[抖火客户端]

This commit is contained in:
2023-05-15 13:18:38 +08:00
commit d61dde8bd8
818 changed files with 142329 additions and 0 deletions

33
pages/user/invite.vue Normal file
View File

@@ -0,0 +1,33 @@
<template>
<view class="content">
</view>
</template>
<script>
import { inviteCode } from '@/apis/interfaces/user'
export default {
data() {
return {}
},
onShow() {
// 获取邀请码
this.inviteInfo();
},
methods: {
// 邀请码
inviteInfo(page) {
inviteCode().then(res => {
}).catch( err => {
uni.showToast({
title: err.message,
icon: "none"
})
})
},
},
}
</script>
<style lang="scss">
</style>