fix : 修复项目实施附件查询功能及上传附件页面初始
This commit is contained in:
@@ -82,3 +82,11 @@ export const deleteDemand = (id) => {
|
||||
method: "delete"
|
||||
});
|
||||
};
|
||||
//需求征集附件列表(归档)
|
||||
export const getRequirementAttachment = (params) => {
|
||||
return request({
|
||||
url: '/workflow/mosr/requirement/attachments',
|
||||
method: "get",
|
||||
params:params
|
||||
});
|
||||
};
|
||||
|
||||
@@ -27,6 +27,13 @@ export const resubmitApply = (data) => {
|
||||
data: data
|
||||
});
|
||||
};
|
||||
export const getInitiationAttachment = (params) => {
|
||||
return request({
|
||||
url: '/workflow/mosr/project/approval/attachments',
|
||||
method: "get",
|
||||
params:params
|
||||
});
|
||||
};
|
||||
//项目实施
|
||||
export const getCheckDetail = (projectId) => {
|
||||
return request({
|
||||
@@ -112,3 +119,10 @@ export const getProjectConclusionProcess = () => {
|
||||
method: "get"
|
||||
});
|
||||
};
|
||||
export const getFilingAttachment = (params) => {
|
||||
return request({
|
||||
url: '/workflow/mosr/project/filing/attachments',
|
||||
method: "get",
|
||||
params:params
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user