| 123456789101112131415 |
- // 查询今日必拼
- export const activitygoodswillYouSpell_Api = (params) => uni.$uv.http.get(`/groupbuy/activitygoods/will-you-spell`, { params });
- // 分页查询今日必拼
- export const activitygoodswillYouSpellPage_Api = (params) => uni.$uv.http.get(`/groupbuy/activitygoods/will-you-spell-page`, { params });
- // 查询商家某个拼团活动商品列表
- export const activitygoodsGetGroupBuyGoodsList_Api = (groupBuyId) => uni.$uv.http.get(`/groupbuy/activitygoods/getGroupBuyGoodsList/${groupBuyId}`, { });
- // 查询团商品的详情
- export const activitygoodsGoodsInfo_Api = (id) => uni.$uv.http.get(`/groupbuy/activitygoods/goodsInfo/${id}`, { });
- // 查询团的详情信息
- export const activitygoodsGroupbuying_Api = (id) => uni.$uv.http.get(`/groupbuy/activitygoods/groupbuying/${id}`, { });
|