|
|
// 商品相关接口
|
|
|
|
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
|