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
26 lines
543 B
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* bom列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const bomSearchHeader = data => createAPI(`/plm/bomSearch3/bomSearchHeader`,'post',data)
|
|
|
|
/**
|
|
* 查询bom替代树形
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getAlternativeTree = data => createAPI(`/plm/bomSearch3/getAlternativeTree`,'post',data)
|
|
|
|
/**
|
|
* 查询子物料
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getComponentPartList = data => createAPI(`/plm/bomSearch3/getComponentPartList`,'post',data)
|
|
|
|
|
|
|
|
|