fix : 修复项目实施附件接口

This commit is contained in:
2024-05-28 18:00:42 +08:00
parent dd406e4ba6
commit be367ead6e
3 changed files with 74 additions and 28 deletions

View File

@@ -100,3 +100,14 @@ export const getProjectConclusionProcess = () => {
});
};
//文件查询
export const searchFile = (targetId,tag) => {
return request({
url: '/workflow/process/file/query',
method: "get",
params:{
targetId:targetId,
tag:tag
}
});
};