123456789101112131415161718192021 |
- /**
- *@des 商品模块接口
- *@author zhengjinyi
- *@date 2020/03/19 14:56:57
- *@param registerByPass
- */
- // 获取商品分类
- const getCategory = "/personalCenter/address";
- // 商品列表
- const getProducts = "/tiny-shop/v1/common/collect/create";
- // 商品详情
- const getProductDetile = "/tiny-shop/v1/common/collect/delete";
- // 再次购买商品列表
- const againBuy = "/tiny-shop/v1/common/transmit/create";
- export {
- getCategory,
- getProducts,
- getProductDetile,
- againBuy
- };
|