plm前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
689 B

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);