红包/app下载/分享新增优化

This commit is contained in:
GaoHao
2025-01-08 11:25:33 +08:00
parent 8692626dd1
commit 3291a7573a
17 changed files with 815 additions and 322 deletions

32
api/share/index.js Normal file
View File

@@ -0,0 +1,32 @@
import http from '@/http/http.js'
/**
* 获取已邀请列表
*/
export const selectInviteByUserIdLists = (data) => {
return http.request({
url: '/invite/selectInviteByUserIdLists',
data: data,
})
}
/**
* 获取邀请战绩
*/
export const selectInviteMoney = (data) => {
return http.request({
url: '/invite/selectInviteMoney',
data: data,
})
}
/**
* 获取海报数据
*/
export const selectBannerList = (data) => {
return http.request({
url: '/banner/selectBannerList',
data: data,
})
}