goods.js 498 B

123456789101112131415161718192021
  1. /**
  2. *@des 商品模块接口
  3. *@author zhengjinyi
  4. *@date 2020/03/19 14:56:57
  5. *@param registerByPass
  6. */
  7. // 获取商品分类
  8. const getCategory = "/personalCenter/address";
  9. // 商品列表
  10. const getProducts = "/tiny-shop/v1/common/collect/create";
  11. // 商品详情
  12. const getProductDetile = "/tiny-shop/v1/common/collect/delete";
  13. // 再次购买商品列表
  14. const againBuy = "/tiny-shop/v1/common/transmit/create";
  15. export {
  16. getCategory,
  17. getProducts,
  18. getProductDetile,
  19. againBuy
  20. };