bonus-ui/src/api/dish/dish.js

128 lines
2.7 KiB
JavaScript
Raw Normal View History

2025-03-12 15:28:36 +08:00
import request from '@/utils/request'
// // 查询菜品灶类列表
// export function getMenuDishesCookListApi(data) {
// return request({
// url: '/smart-canteen/api/v1/menudishescook/page',
// method: 'get',
// headers: {
// "merchant-id":"378915229716713472",
// },
// params: data
// })
// }
// 菜品种类-全量数据
export function menuDishesTypeAllListApi(data) {
return request({
url: '/smart-canteen/api/v1/menudishestype/all/list',
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
// 菜品种类-新增 areaId typeName
export function addMenuDishesTypeApi(data) {
return request({
url: '/smart-canteen/api/v1/menudishestype/add',
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
// 菜品种类-修改 areaId typeId typeName
export function editMenuDishesTypeApi(data) {
return request({
url: '/smart-canteen/api/v1/menudishestype/edit',
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
// 菜品种类-删除 typeId
export function removeMenuDishesTypeApi(typeId) {
return request({
url: '/smart-canteen/api/v1/menudishestype/remove/'+typeId,
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
// data: data
})
}
// 菜品列表-分页
export function getMenuDishesListApi(data) {
return request({
url: '/smart-canteen/api/v2/menudishes/page',
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
// 菜品列表-新增
export function addMenuDishesApi(data) {
return request({
url: '/smart-canteen/api/v2/menudishes/add',
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
// 菜品列表-修改
export function editMenuDishesApi(data) {
return request({
url: '/smart-canteen/api/v2/menudishes/edit',
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
2025-03-21 17:59:18 +08:00
// 菜品列表-详情
export function menuDishesDetailApi(data) {
return request({
url: '/smart-canteen/api/v2/menudishes/detail/'+data.dishesId,
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
data: data
})
}
2025-03-12 15:28:36 +08:00
// 菜品列表-删除
export function removeMenuDishesApi(dishesId) {
return request({
url: '/smart-canteen/api/v2/menudishes/remove/'+dishesId,
method: 'post',
headers: {
"merchant-id":"378915229716713472",
},
// data: data
})
}