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.
yanzong_qianduan/api/newFun.js

28 lines
642 B

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