推拿小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
626 B

// 商品相关接口
const api = {
/**
* 查询分类接口
*/
getCategoryList: {
url: '/config/queryCategoryList',
method: 'GET',
},
/**
* 查询推拿项目列表
*/
queryProductList: {
url: '/item/queryItemList',
method: 'GET',
},
/**
* 查询推拿项目列表
*/
queryProductDetail: {
url: '/item/queryItemById',
method: 'GET',
},
/**
* 获取优惠券信息
*/
queryVouchersList: {
url: '/vouchers/queryVouchersList',
method: 'GET',
},
/**
* 获取优惠券信息
*/
queryVoucherShopList: {
url: '/vouchers/queryShopList',
method: 'GET',
},
}
export default api