fix : 修复页面细节功能及附件上传组件

This commit is contained in:
2024-05-20 00:29:31 +08:00
parent 1f4389eb5e
commit 9661cdbb2b
10 changed files with 268 additions and 157 deletions

View File

@@ -24,9 +24,17 @@ export const getProcessInfo = () => {
method: "post"
});
};
export const getDetail = (requirementId) => {
export const getDetail = (projectId) => {
return request({
url: `/workflow/mosr/requirement/collect/info/${requirementId}`,
url: `/workflow/mosr/requirement/collect/info/${projectId}`,
method: "get"
});
};
export const resubmitReported = (data) => {
return request({
url: '/workflow/mosr/requirement/collect/resubmit',
method: "post",
data: data
});
};