31 lines
485 B
JavaScript
31 lines
485 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 原料类别树
|
|
export function systemMaterialTreeApi(data) {
|
|
return request({
|
|
url: '/smart-canteen/cook_material_type/getTree',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 查询原料列表
|
|
export function getMaterialListApi(data) {
|
|
return request({
|
|
url: '/smart-canteen/cook_material/list',
|
|
method: 'get',
|
|
headers: {
|
|
//"merchant-id":"378915229716713472",
|
|
},
|
|
params: data
|
|
})
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|