|
|
-
- // 商家相关接口
-
- const api = {
- /**
- * 查询商家详情
- */
- queryShopList: {
- url: '/shop/queryShopList',
- method: 'GET',
- auth : true,
- showLoading : true,
- },
- /**
- * 查询商家详情
- */
- queryShopById: {
- url: '/shop/queryShopById',
- method: 'GET',
- auth : true,
- showLoading : true,
- },
- /**
- * 新增商家信息
- */
- addShop: {
- url: '/shop/addShop',
- method: 'POST',
- limit : 500,
- auth : true,
- showLoading : true,
- },
- /**
- * 修改商家信息
- */
- updateShop: {
- url: '/shop/updateShop',
- method: 'POST',
- limit : 500,
- auth : true,
- showLoading : true,
- },
- }
-
- export default api
|