This commit is contained in:
tcy
2025-08-23 01:41:19 +08:00
18 changed files with 866 additions and 248 deletions

View File

@ -71,4 +71,16 @@ export const getFileList = (data) => {
method: 'get',
params: data
})
}
/**
* 查看收入合同附件列表
* @param id
*/
export const getInfoByProjectId = (data) => {
return request({
url: '/bidding/listOfWinningBids/getInfoByProjectId',
method: 'get',
params: data
})
}

View File

@ -122,3 +122,11 @@ export const editStatus = (query: any): AxiosPromise<any> => {
data: query
});
};
//获取审核状态
export const getApproval = (id) => {
return request({
url: '/tender/tenderPlanLimitList/getVersionDetail',
method: 'get',
params: { versions: id }
});
};