groupbuy.js 813 B

123456789101112131415
  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}`, { });