123456789101112131415161718192021222324252627282930313233 |
- import {request} from '@/utils/request.js'
- // 店铺详情
- export function shopDetail(data) {
- return request({
- url: `/springbatchservice/ypp/kfc/shop`,
- method:'post',
- data
-
- })
- }
- // 菜单
- export function menuList(shopId) {
- return request({
- url: `/springbatchservice/ypp/kfc/menus/${shopId}`,
-
- })
- }
- // 创建订单
- export function createOrder(data) {
- return request({
- url: `/springbatchservice/ypp/kfc/createOrder`,
- method:'post',
- data
-
- })
- }
|