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

45 lines
629 B

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