库存管理

This commit is contained in:
quantulr
2022-08-24 13:42:47 +08:00
parent 96954052c5
commit 70cbe9b562
6 changed files with 1011 additions and 36 deletions

View File

@ -27,3 +27,10 @@ export const deleteProjectCompany = (id) => {
method: "delete",
});
};
export const updateProjectCompany = (data) => {
return request({
url: `/project_company/${data.id}`,
method: "put",
data,
});
};