import {createAPI} from "../../utils/httpRequest"; export const getBomTreeStructure = (data)=>createAPI(`/quote/bom/tree/list`,'get',data); export const updateQuoteBomList = (data)=>createAPI(`/quote/bom/update`,'post',data); export const searchQuoteBomList = (data)=>createAPI(`/quote/bom/list`,'post',data); export const searchQuoteBomHeader = (data)=>createAPI(`/quote/bom/header`,'get',data); export const searchQuoteBOMVersion = (data)=>createAPI(`/quote/bom/version/list`,'post',data); export const searchQuoteBOMAlternativeNo = (data)=>createAPI(`/quote/bom/version/list`,'post',data); export const searchQuoteBOMAllCost = (data)=>createAPI(`/quote/bom/detail/list`,'post',data);