| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import https from "@/plugins/luch-request_0.0.7/request";
- /** *
- * 赚钱分红 邀请开店
- */
- export const appyleListApi = async data => {
- return https.get("/apply/list", data);
- };
- /** *
- * 获取小程序appID 姜枫 2021-03-23
- */
- export const getWeixinId = data => {
- return https.get('/wx-open/get-mini-info', data)
- }
- /** *
- * 列表 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);
- };
|