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

2 years ago
  1. import {createAPI} from "../../utils/httpRequest";
  2. export const getBomTreeStructure = (data)=>createAPI(`/quote/bom/tree/list`,'get',data);
  3. export const updateQuoteBomList = (data)=>createAPI(`/quote/bom/update`,'post',data);
  4. export const searchQuoteBomList = (data)=>createAPI(`/quote/bom/list`,'post',data);
  5. export const searchQuoteBomHeader = (data)=>createAPI(`/quote/bom/header`,'get',data);
  6. export const searchQuoteBOMVersion = (data)=>createAPI(`/quote/bom/version/list`,'post',data);
  7. export const searchQuoteBOMAlternativeNo = (data)=>createAPI(`/quote/bom/version/list`,'post',data);
  8. export const searchQuoteBOMAllCost = (data)=>createAPI(`/quote/bom/detail/list`,'post',data);