库存管理
This commit is contained in:
@ -27,3 +27,10 @@ export const deleteProjectCompany = (id) => {
|
||||
method: "delete",
|
||||
});
|
||||
};
|
||||
export const updateProjectCompany = (data) => {
|
||||
return request({
|
||||
url: `/project_company/${data.id}`,
|
||||
method: "put",
|
||||
data,
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user