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.

26 lines
543 B

  1. import { createAPI } from "@/utils/httpRequest.js";
  2. /**
  3. * bom列表查询
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const bomSearchHeader = data => createAPI(`/plm/bomSearch3/bomSearchHeader`,'post',data)
  8. /**
  9. * 查询bom替代树形
  10. * @param data
  11. * @returns {*}
  12. */
  13. export const getAlternativeTree = data => createAPI(`/plm/bomSearch3/getAlternativeTree`,'post',data)
  14. /**
  15. * 查询子物料
  16. * @param data
  17. * @returns {*}
  18. */
  19. export const getComponentPartList = data => createAPI(`/plm/bomSearch3/getComponentPartList`,'post',data)