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.
81 lines
1.9 KiB
81 lines
1.9 KiB
import { createAPI } from "@/utils/httpRequest.js";
|
|
|
|
/**
|
|
* master part 物料信息列表查询
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const masterPartSearch = data => createAPI(`/plm/masterPartInformation/masterPartSearch`,'post',data)
|
|
|
|
/**
|
|
* master part 物料信息新增
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const masterPartInformationSave = data => createAPI(`/plm/masterPartInformation/masterPartInformationSave`,'post',data)
|
|
|
|
/**
|
|
* master part 物料信息编辑
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const masterPartInformationEdit = data => createAPI(`/plm/masterPartInformation/masterPartInformationEdit`,'post',data)
|
|
|
|
/**
|
|
* master part 物料信息删除
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const masterPartInformationDelete = data => createAPI(`/plm/masterPartInformation/masterPartInformationDelete`,'post',data)
|
|
|
|
/**
|
|
* master part 查询物料属性
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getMasterPartItem = data => createAPI(`/plm/masterPartInformation/getMasterPartItem`,'post',data)
|
|
|
|
/**
|
|
* master part 获取模板属性
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const getItemLists = data => createAPI(`/plm/masterPartInformation/getItemLists`,'post',data)
|
|
|
|
/**
|
|
* master part 新增物料属性
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const addMasterPartItem = data => createAPI(`/plm/masterPartInformation/addMasterPartItem`,'post',data)
|
|
|
|
/**
|
|
* master part 删除物料属性
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const deleteMasterPartItem = data => createAPI(`/plm/masterPartInformation/deleteMasterPartItem`,'post',data)
|
|
|
|
/**
|
|
* master part 修改物料属性值
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const commitItemValue = data => createAPI(`/plm/masterPartInformation/commitItemValue`,'post',data)
|
|
|
|
/**
|
|
* master part 查询未选择的物料属性
|
|
* @param data
|
|
* @returns {*}
|
|
*/
|
|
export const queryMasterPartItem = data => createAPI(`/plm/masterPartInformation/queryMasterPartItem`,'post',data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|