推拿小程序前端代码仓库
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.
 
 
 

49 lines
771 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',
},
/**
* 代金券-根据id查看代金券详情
*/
queryVouchersById: {
url: '/vouchers/queryVouchersById',
method: 'GET',
},
}
export default api