4.1 同步发版内容到天梯

This commit is contained in:
jl-zhoujl2
2022-04-01 20:06:34 +08:00
parent a3b939d154
commit 7b3efe00dd
128 changed files with 929 additions and 5029 deletions

View File

@ -136,28 +136,3 @@ export async function sendFinisCalibration(params: any) {
}
})
}
export async function getThisFileBidList(Bid: string) {
if(Bid==null||Bid==""||Bid==undefined){
return [];
}
return request('/api/core-service-ebtp-updownload/v1/attachment/find',{
method: 'post',
data: {
"bidList": [Bid]
}
}).then(res => {
return res;
})
}
/**
* 根据bid获取文件列表
* @param params
*/
export async function getFileListByBid(params: any) {
return request('/api/core-service-ebtp-updownload/v1/attachment/find', {
method: 'POST',
data: {...params}
});
}