api.js 628 Bytes
module.exports = {
  bannerList: "/banner/list", // get 轮播图
  typeList: "/type/list", // get 类型列表
  productList: "/product/list",  // get 产品列表
  productDetail: "/product/detail",  // get 产品详情
  storeDetail: "/store/detail", // get 获得店铺详情
  productStore: "/product/store", // get 店铺产品列表
  collectStore: "/collect/store", // get 收藏的店铺
  collectProduct: "/collect/product", // get 收藏的产品
  collectProductChange: "/collect/product/change", // POST 加入我的收藏--产品
  collectStoreChange: "/collect/store/change", // POST 加入我的收藏--店铺
}