fix : 修复细节

This commit is contained in:
2024-05-19 00:16:40 +08:00
parent fccce985b6
commit c96cbf8415
7 changed files with 269 additions and 86 deletions

View File

@@ -9,4 +9,12 @@ export const fileUp = (url, data) => {
'Content-Type': 'multipart/form-data'
}
})
}
}
export const requirementReported = (data) => {
return request({
url: '/workflow/mosr/requirement/reported',
method: "post",
data: data
});
};