3.10 工程代码同步master

This commit is contained in:
jl-zhoujl2
2022-03-10 14:24:13 +08:00
parent 41ab55a4ac
commit 62f6b07ee2
914 changed files with 143121 additions and 29110 deletions

View File

@ -94,3 +94,55 @@ export async function proArchive(param: any) {
method: 'PUT',
});
}
/**
* 异常归档-列表查询
* @param param
*/
export async function getExceptionArchive(params: any) {
return request(`/api/biz-service-ebtp-project/v1/projectSection/selectArchiveByProjectId/${params}`, {
method: 'GET',
});
}
/**
* 异常归档-添加到异常处理
* @param param
*/
export async function addToArchiveList(params: any) {
return request(`/api/biz-service-ebtp-archive/v1/archiveRounds/initExceptionArchiveByRounds/${params}`, {
method: 'GET',
});
}
/**
* 根据oid删除文件
* @param params
*/
export async function deleteFileByOid(params: any) {
return request('/api/core-service-ebtp-updownload/v1/attachment/item/' + params, {
method: 'DELETE',
});
}
/**
* 根据bid获取文件列表
* @param params
*/
export async function getFileListByBid(params: any) {
return request('/api/core-service-ebtp-updownload/v1/attachment/find', {
method: 'POST',
data: {...params}
});
}
//列表文件下载==》高海峰
export async function selectParam2(params?: any) {
return request('/api/core-service-ebtp-updownload/v1/hulk/push',{
method:'POST',
data:{
...params
}
});
}