| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import https from '@/plugins/luch-request_0.0.7/request'
- /** *
- * 列表 b
- */
- export const getProfile = data => {
- return https.get('/invite/profile', data)
- }
- /** *
- * 列表 b
- */
- export const getList = data => {
- return https.get('/invite/list', data)
- }
- // ============================================================
- /** *
- * 列表 b
- */
- export const getListB = data => {
- return https.get('/invite/list', data)
- }
- /** *
- * 详情 b
- */
- export const getDet = data => {
- return https.get('/invite/detail', data)
- }
- /** *
- * 兑奖 b
- */
- export const give = data => {
- return https.get('/invite/give', data)
- }
- /** *
- * 奖励设置详情 b
- */
- export const inviteAssetDet = data => {
- return https.get('/invite-asset/detail', data)
- }
- /** *
- * 奖励设置详情 b
- */
- export const inviteAssetUpdate = data => {
- return https.post('/invite-asset/update', data)
- }
|