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