api/calc/food.js | ●●●●● patch | view | raw | blame | history |
api/calc/food.js
New file @@ -0,0 +1,27 @@ import request from '@/utils/request' // 查询用户个人信息 export function getUserProfile() { return request({ url: '/system/user/profile', method: 'get' }) } // 修改用户个人信息 export function updateUserProfile(data) { return request({ url: '/system/user/profile', method: 'put', data: data }) } // 计算产品成本 export function getFoodMaterialCostList(data) { return request({ url: '/jfz/material/calc', method: 'put', data: data }) }