This commit is contained in:
ljx
2025-08-23 09:13:54 +08:00
parent 7f19586b93
commit 0d180e63f2
3 changed files with 45 additions and 4 deletions

View File

@ -61,3 +61,10 @@ export const delMaterialIssue = (id: string | number | Array<string | number>) =
method: 'delete'
});
};
//获取一起名称
export const getMaterialName = (id: any) => {
return request({
url: '/materials/materials/inventoryNumber/' + id,
method: 'get'
});
};