fix : 修复页面细节
This commit is contained in:
@@ -55,13 +55,18 @@ export const getProjectCheckProcess = (projectId) => {
|
||||
method: "get"
|
||||
});
|
||||
};
|
||||
export const getImplementationAttachment = (projectId) => {
|
||||
export const getImplementationAttachment = (params) => {
|
||||
return request({
|
||||
url: '/workflow/mosr/project/implementation/tags',
|
||||
url: '/workflow/mosr/project/implementation/attachments',
|
||||
method: "get",
|
||||
params:{
|
||||
projectId:projectId
|
||||
}
|
||||
params:params
|
||||
});
|
||||
};
|
||||
export const uploadAttachment= (data) => {
|
||||
return request({
|
||||
url: '/workflow/mosr/project/implementation/upload',
|
||||
method: "post",
|
||||
data: data
|
||||
});
|
||||
};
|
||||
export const addLedger = (data) => {
|
||||
@@ -99,15 +104,3 @@ export const getProjectConclusionProcess = () => {
|
||||
method: "get"
|
||||
});
|
||||
};
|
||||
|
||||
//文件查询
|
||||
export const searchFile = (targetId,tag) => {
|
||||
return request({
|
||||
url: '/workflow/process/file/query',
|
||||
method: "get",
|
||||
params:{
|
||||
targetId:targetId,
|
||||
tag:tag
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user