groupbuy.js 1.5 KB

123456789101112131415161718192021222324252627282930
  1. // 查询今日必拼
  2. export const activitygoodswillYouSpell_Api = (params) => uni.$uv.http.get(`/groupbuy/activitygoods/will-you-spell`, { params });
  3. // 分页查询今日必拼
  4. export const activitygoodswillYouSpellPage_Api = (params) => uni.$uv.http.get(`/groupbuy/activitygoods/will-you-spell-page`, { params });
  5. // 查询商家某个拼团活动商品列表
  6. export const activitygoodsGetGroupBuyGoodsList_Api = (groupBuyId) => uni.$uv.http.get(`/groupbuy/activitygoods/getGroupBuyGoodsList/${groupBuyId}`, { });
  7. // 查询团商品的详情
  8. export const activitygoodsGoodsInfo_Api = (id) => uni.$uv.http.get(`/groupbuy/activitygoods/goodsInfo/${id}`, { });
  9. // 查询团的详情信息
  10. export const activitygoodsGroupbuying_Api = (id) => uni.$uv.http.get(`/groupbuy/activitygoods/groupbuying/${id}`, { });
  11. // 拼团商品中显示,进行中的团
  12. export const groupbuyingList_Api = (businessId, activityGoodsId) => uni.$uv.http.get(`/groupbuy/team/list/${businessId}/${activityGoodsId}`, { });
  13. // 查询团详情
  14. export const groupbuyTeamInfo_Api = (teamId) => uni.$uv.http.get(`/groupbuy/team/info/${teamId}`, { });
  15. // 查询我的团订单
  16. export const groupbuyingTeamMy_Api = (params) => uni.$uv.http.get(`/groupbuy/team/my`, { params });
  17. // 查询我的团订单详情
  18. export const groupbuyingTeamTeamorder_Api = (memberId) => uni.$uv.http.get(`/groupbuy/team/teamorder/${memberId}`, { });
  19. // 查询团的详情信息
  20. export const groupbuyActivityInfo_Api = (id) => uni.$uv.http.get(`/groupbuy/activity/info/${id}`, { });