fix : 修复项目实施附件查询及上传功能、代码文件优化

This commit is contained in:
2024-06-03 15:39:22 +08:00
parent 1ee92f698e
commit abe80eafdc
21 changed files with 86 additions and 1164 deletions

View File

@@ -82,18 +82,3 @@ export const deleteDemand = (id) => {
method: "delete"
});
};
//需求征集附件列表(归档)
export const getRequirementAttachment = (params) => {
return request({
url: '/workflow/mosr/requirement/attachments',
method: "get",
params:params
});
};
export const uploadRequirementAttachment= (data) => {
return request({
url: '/workflow/mosr/requirement/upload',
method: "post",
data: data
});
};