/* * @Author: zwq * @Date: 2024-04-09 16:42:19 * @LastEditors: zwq * @LastEditTime: 2024-04-10 14:31:46 * @Description: */ import request from '@/utils/request' // 创建原料 export function createMaterialPricing(data) { return request({ url: '/base/material-pricing/create', method: 'post', data: data }) } // 更新原料 export function updateMaterialPricing(data) { return request({ url: '/base/material-pricing/update', method: 'put', data: data }) } // 获取code export function getCode() { return request({ url: '/base/material-pricing/autoCode', method: 'POST' }) } // 删除原料 export function deleteMaterialPricing(id) { return request({ url: '/base/material-pricing/delete?id=' + id, method: 'delete' }) } // 获得原料 export function getMaterialPricing(id) { return request({ url: '/base/material-pricing/get?id=' + id, method: 'get' }) } // 获得原料分页 export function getMaterialPricingPage(query) { return request({ url: '/base/material-pricing/page', method: 'get', params: query }) } // 导出原料 Excel export function exportMaterialPricingExcel(query) { return request({ url: '/base/material-pricing/export-excel', method: 'get', params: query, responseType: 'blob' }) }