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.
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
|
|
// 服务 服务列表 查询优惠券
|
|
|
|
export const serverCheckOrder = (param) => {
|
|
|
|
return request.post('server/checkOrder', param)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 服务 服务列表
|
|
|
|
export const serverList = (param) => {
|
|
|
|
return request.post('server/list', param)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 服务 服务分类
|
|
|
|
export const serverCategoryList = (param) => {
|
|
|
|
return request.post('server/categoryList', param)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 店长 商品列表
|
|
|
|
export const storeKeeperList = (param) => {
|
|
|
|
return request.get('storeKeeper/list', param)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 门店详情
|
|
|
|
export const storeKeeperDetail = (shopId) => {
|
|
|
|
return request.get('shop/detail', { shopId })
|
|
|
|
}
|