feat(邀请注册页面): 对接接口

This commit is contained in:
hzj 2025-10-24 12:29:29 +08:00
parent e5cbf09dcc
commit b742a60c69
2 changed files with 190 additions and 173 deletions

73
src/api/invitation.js Normal file
View File

@ -0,0 +1,73 @@
import { get, post } from '../utils/http.js'
// 获取我的邀请码
export const getMyInviteCode = async () => {
try {
const response = await get(`/activity/invite/user/my/invite/code`)
return response
} catch (error) {
console.error('Failed to fetch get my invite code:', error)
console.error('error:' + error.response.errorMsg)
throw error
}
}
// 绑定邀请码
export const bindInviteCode = async (data) => {
try {
const response = await post(`/activity/invite/user/bind/invite/code`, data)
return response
} catch (error) {
console.error('Failed to fetch bind invite code:', error)
console.error('error:' + error.response.errorMsg)
throw error
}
}
// 获取收益统计
export const getMyInviteIncome = async () => {
try {
const response = await get(`/activity/invite/user/income/statistics`)
return response
} catch (error) {
console.error('Failed to fetch get my invite income:', error)
console.error('error:' + error.response.errorMsg)
throw error
}
}
// 有效邀请用户列表
export const getMyInviteUsers = async () => {
try {
const response = await get(`/activity/invite/user/valid/invite/users`)
return response
} catch (error) {
console.error('Failed to fetch get my invite users:', error)
console.error('error:' + error.response.errorMsg)
throw error
}
}
// 邀请用户奖励池
export const getInviteAwardPool = async () => {
try {
const response = await get(`/activity/invite/user/award/pool`)
return response
} catch (error) {
console.error('Failed to fetch get my invite award pool:', error)
console.error('error:' + error.response.errorMsg)
throw error
}
}
// 邀请用户领取奖励
export const getInviteReceiveAward = async (awardId) => {
try {
const response = await get(`/activity/invite/user/receive/award?id=${awardId}`)
return response
} catch (error) {
console.error('Failed to fetch get receive invite award:', error)
console.error('error:' + error.response.errorMsg)
throw error
}
}

View File

@ -20,7 +20,7 @@
style="padding: 0 3%; display: flex; flex-direction: column; gap: 12px; padding-bottom: 30px" style="padding: 0 3%; display: flex; flex-direction: column; gap: 12px; padding-bottom: 30px"
> >
<!-- 倒计时 --> <!-- 倒计时 -->
<div style="position: relative"> <!-- <div style="position: relative">
<img :src="images.countdownBg" alt="" width="100%" style="display: block" /> <img :src="images.countdownBg" alt="" width="100%" style="display: block" />
<div <div
style=" style="
@ -37,7 +37,7 @@
> >
29D 2323:23 29D 2323:23
</div> </div>
</div> </div> -->
<!-- 我的邀请码 --> <!-- 我的邀请码 -->
<div <div
@ -65,12 +65,12 @@
gap: 4px; gap: 4px;
" "
> >
<div style="font-weight: 590">18709616238</div> <div style="font-weight: 590">{{ myInviteInfo.inviteCode || '' }}</div>
<img <img
src="../../assets/icon/copy.png" src="../../assets/icon/copy.png"
alt="" alt=""
width="24px" width="24px"
@click="copyCode('18709616238')" @click="copyCode(myInviteInfo.inviteCode || '')"
/> />
</div> </div>
<div style="font-weight: 510; font-size: 0.7em"> <div style="font-weight: 510; font-size: 0.7em">
@ -123,7 +123,7 @@
" "
> >
<img src="/src/assets/icon/coin.png" alt="" width="10%" style="display: block" /> <img src="/src/assets/icon/coin.png" alt="" width="10%" style="display: block" />
<div style="font-weight: 590">111111</div> <div style="font-weight: 590">{{ myInviteIncome.totalIncome || 0 }}</div>
</div> </div>
</div> </div>
<div style="position: relative; width: 47%"> <div style="position: relative; width: 47%">
@ -140,7 +140,7 @@
" "
> >
<img src="/src/assets/icon/coin.png" alt="" width="10%" style="display: block" /> <img src="/src/assets/icon/coin.png" alt="" width="10%" style="display: block" />
<div style="font-weight: 590">111111</div> <div style="font-weight: 590">{{ myInviteIncome.todayIncome || 0 }}</div>
</div> </div>
</div> </div>
</div> </div>
@ -165,7 +165,9 @@
background: radial-gradient(323.25% 50.32% at 50% 50%, #d58ef4 0%, #7a5aff 100%); background: radial-gradient(323.25% 50.32% at 50% 50%, #d58ef4 0%, #7a5aff 100%);
" "
></div> ></div>
<div style="font-weight: 590">Number of valid users l invited: 9</div> <div style="font-weight: 590">
Number of valid users l invited: {{ myInviteIncome.validInviteCount || 0 }}
</div>
</div> </div>
<!-- 列表 --> <!-- 列表 -->
@ -220,9 +222,15 @@
Prowide income Prowide income
</div> </div>
</div> </div>
<!-- 列表项 --> <!-- 列表项 -->
<div v-for="value in 10" style="width: 100%; display: flex; align-items: center"> <div
<div style="flex: 1; font-weight: 590; font-size: 0.7em">ID:152319866</div> v-for="user in myInviteUsers"
style="width: 100%; display: flex; align-items: center"
>
<div style="flex: 1; font-weight: 590; font-size: 0.7em">
ID:{{ user.invitedUserAccount || '-' }}
</div>
<div <div
style=" style="
flex: 1; flex: 1;
@ -243,7 +251,7 @@
); );
" "
></div> ></div>
<div style="font-weight: 590; font-size: 0.7em">10Day</div> <div style="font-weight: 590; font-size: 0.7em">{{ user.remainingDays || 0 }}Day</div>
<div <div
style=" style="
width: 1px; width: 1px;
@ -266,7 +274,9 @@
" "
> >
<img src="../../assets/icon/coin.png" alt="" width="15%" /> <img src="../../assets/icon/coin.png" alt="" width="15%" />
<div style="color: #ffb627; font-size: 0.8em; font-weight: 590">11111111111</div> <div style="color: #ffb627; font-size: 0.8em; font-weight: 590">
{{ user.provideIncome || 0 }}
</div>
</div> </div>
</div> </div>
</div> </div>
@ -274,9 +284,13 @@
<!-- 奖励说明模块 --> <!-- 奖励说明模块 -->
<div v-if="showModule == 'reward'" style="display: flex; flex-direction: column; gap: 12px"> <div v-if="showModule == 'reward'" style="display: flex; flex-direction: column; gap: 12px">
<!-- 邀请5人奖励 --> <div style="position: relative" v-for="poolItem in inviteAwardPool">
<div style="position: relative"> <img
<img :src="images.reward5people" alt="" width="100%" style="display: block" /> :src="images[`reward${poolItem.quantity}people`]"
alt=""
width="100%"
style="display: block"
/>
<div <div
style=" style="
position: absolute; position: absolute;
@ -287,7 +301,10 @@
" "
> >
<div style="display: flex; justify-content: space-around"> <div style="display: flex; justify-content: space-around">
<div style="width: 45%; position: relative"> <div
style="width: 45%; position: relative"
v-for="(award, index) in poolItem.activityRewardPropsList"
>
<img :src="images.rewardItemBg" alt="" width="100%" /> <img :src="images.rewardItemBg" alt="" width="100%" />
<div <div
style=" style="
@ -298,161 +315,19 @@
align-items: center; align-items: center;
" "
> >
<img src="../../assets/icon/coinMore.png" alt="" width="50%" /> <img :src="award.cover" alt="" width="50%" />
</div>
</div>
<div style="width: 45%; position: relative">
<img :src="images.rewardItemBg" alt="" width="100%" />
<div
style="
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
"
>
<img src="../../assets/icon/coinMore.png" alt="" width="50%" />
</div> </div>
</div> </div>
</div> </div>
<div style="display: flex; justify-content: center"> <div style="display: flex; justify-content: center">
<img <img
v-if="reward5peopleShow" v-if="poolItem.state == '1'"
:src="images.receiveBtActive" :src="images.receiveBtActive"
alt="" alt=""
width="35%" width="35%"
@click="reward5peopleShow = false" @click="receiveAward(poolItem.id)"
/>
<img
v-else
:src="images.receiveBt"
alt=""
width="35%"
@click="reward5peopleShow = true"
/>
</div>
</div>
</div>
<!-- 邀请10人奖励 -->
<div style="position: relative">
<img :src="images.reward10people" alt="" width="100%" style="display: block" />
<div
style="
position: absolute;
inset: 12% 0 0;
display: flex;
flex-direction: column;
justify-content: space-around;
"
>
<div style="display: flex; justify-content: space-around">
<div style="width: 45%; position: relative">
<img :src="images.rewardItemBg" alt="" width="100%" />
<div
style="
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
"
>
<img src="../../assets/icon/coinMore.png" alt="" width="50%" />
</div>
</div>
<div style="width: 45%; position: relative">
<img :src="images.rewardItemBg" alt="" width="100%" />
<div
style="
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
"
>
<img src="../../assets/icon/coinMore.png" alt="" width="50%" />
</div>
</div>
</div>
<div style="display: flex; justify-content: center">
<img
v-if="reward10peopleShow"
:src="images.receiveBtActive"
alt=""
width="35%"
@click="reward10peopleShow = false"
/>
<img
v-else
:src="images.receiveBt"
alt=""
width="35%"
@click="reward10peopleShow = true"
/>
</div>
</div>
</div>
<!-- 邀请15人奖励 -->
<div style="position: relative">
<img :src="images.reward15people" alt="" width="100%" style="display: block" />
<div
style="
position: absolute;
inset: 12% 0 0;
display: flex;
flex-direction: column;
justify-content: space-around;
"
>
<div style="display: flex; justify-content: space-around">
<div style="width: 45%; position: relative">
<img :src="images.rewardItemBg" alt="" width="100%" />
<div
style="
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
"
>
<img src="../../assets/icon/coinMore.png" alt="" width="50%" />
</div>
</div>
<div style="width: 45%; position: relative">
<img :src="images.rewardItemBg" alt="" width="100%" />
<div
style="
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
"
>
<img src="../../assets/icon/coinMore.png" alt="" width="50%" />
</div>
</div>
</div>
<div style="display: flex; justify-content: center">
<img
v-if="reward15peopleShow"
:src="images.receiveBtActive"
alt=""
width="35%"
@click="reward15peopleShow = false"
/>
<img
v-else
:src="images.receiveBt"
alt=""
width="35%"
@click="reward15peopleShow = true"
/> />
<img v-else :src="images.receiveBt" alt="" width="35%" />
</div> </div>
</div> </div>
</div> </div>
@ -517,7 +392,7 @@
</div> </div>
<!-- 确认按钮 --> <!-- 确认按钮 -->
<img :src="images.confirm" alt="" width="25%" @click="confirmInvitationCode" /> <img :src="images.confirm" alt="" width="25%" @click="confirm" />
</div> </div>
<div style="color: rgba(0, 0, 0, 0.4); font-weight: 510; font-size: 0.7em"> <div style="color: rgba(0, 0, 0, 0.4); font-weight: 510; font-size: 0.7em">
*Only users who registered within 72 hours can fill in the invitation code. Once the *Only users who registered within 72 hours can fill in the invitation code. Once the
@ -556,13 +431,18 @@ import {
} from '@/utils/appConnectionManager.js' } from '@/utils/appConnectionManager.js'
import { computed, onMounted, onUnmounted, ref } from 'vue' import { computed, onMounted, onUnmounted, ref } from 'vue'
import GeneralHeader from '@/components/GeneralHeader.vue' import GeneralHeader from '@/components/GeneralHeader.vue'
import itemCenter from '@/components/WeeklyStar/itemCenter.vue'
import TopUser from '@/components/WeeklyStar/topUser.vue'
import maskLayer from '../../components/MaskLayer.vue' import maskLayer from '../../components/MaskLayer.vue'
import { useDebounce, useThrottle } from '@/utils/useDebounce'
import { getMemberProfile } from '@/api/wallet' import { getMemberProfile } from '@/api/wallet'
import { showError, showWarning, showInfo, showSuccess } from '@/utils/toast.js' import { showError, showWarning, showInfo, showSuccess } from '@/utils/toast.js'
import { set, useClipboard } from '@vueuse/core' import { useClipboard } from '@vueuse/core'
import {
getMyInviteCode, //
bindInviteCode, //
getMyInviteIncome, //
getMyInviteUsers, //
getInviteAwardPool, //
getInviteReceiveAward, //
} from '@/api/invitation.js'
// vite // vite
const imageModules = import.meta.glob('@/assets/images/InvitationNewUser/*.{png,jpg,svg}', { const imageModules = import.meta.glob('@/assets/images/InvitationNewUser/*.{png,jpg,svg}', {
@ -587,13 +467,13 @@ const enterCodeShow = ref(false) //交易弹窗
const tipShow = ref(false) // const tipShow = ref(false) //
const invitationCode = ref('') // const invitationCode = ref('') //
const myInviteInfo = ref({}) //
const myInviteIncome = ref({}) //
const myInviteUsers = ref([]) //
const inviteAwardPool = ref({})
const showModule = ref('list') // const showModule = ref('list') //
const reward5peopleShow = ref(false)
const reward10peopleShow = ref(false)
const reward15peopleShow = ref(false)
// //
const maskLayerShow = computed(() => { const maskLayerShow = computed(() => {
return helpInfoShow.value || enterCodeShow.value return helpInfoShow.value || enterCodeShow.value
@ -747,19 +627,83 @@ const connectToApp = async () => {
} }
} }
//
const confirmInvitationCode = () => { const confirmInvitationCode = () => {
if (!invitationCode.value.trim()) { if (!invitationCode.value.trim()) {
showWarning('Please enter a valid invitation code.') showWarning('Please enter a valid invitation code.')
return return
} }
invitationCode.value = '' }
showSuccess('Invitation code confirmed!')
enterCodeShow.value = false //
const apiGetMyInviteCode = async () => {
const resCode = await getMyInviteCode()
if (resCode.status && resCode.body) {
myInviteInfo.value = resCode.body
}
}
//
const confirm = async () => {
if (!invitationCode.value.trim()) {
showWarning('Please enter a valid invitation code.')
return
}
let data = { inviteCode: invitationCode.value.trim(), inviteType: 'REGISTER' }
try {
const resBind = await bindInviteCode(data)
if (resBind.status) {
showSuccess('Invitation code bound successfully!')
} else {
showError('Invitation code binding failed.')
}
invitationCode.value = ''
enterCodeShow.value = false
} catch (error) {
showError(error.errorMsg)
}
}
//
const apiGetMyInviteIncome = async () => {
const resIncome = await getMyInviteIncome()
if (resIncome.status && resIncome.body) {
myInviteIncome.value = resIncome.body
}
}
//
const apiGetMyInviteUsers = async () => {
const resUserList = await getMyInviteUsers()
if (resUserList.status && resUserList.body) {
myInviteUsers.value = resUserList.body
}
}
//
const apiGetInviteAwardPool = async () => {
const resAwardPool = await getInviteAwardPool()
if (resAwardPool.status && resAwardPool.body) {
inviteAwardPool.value = resAwardPool.body
}
}
//
const receiveAward = async (awardId) => {
const resAward = await getInviteReceiveAward(awardId)
if (resAward.status && resAward.body) {
apiGetInviteAwardPool() //
}
} }
onMounted(() => { onMounted(() => {
connectToApp() connectToApp()
isInAppEnvironment.value = isInApp() isInAppEnvironment.value = isInApp()
apiGetMyInviteCode() //
apiGetMyInviteIncome() //
apiGetMyInviteUsers() //
apiGetInviteAwardPool() //
}) })
</script> </script>