招标一览审核

This commit is contained in:
Teo
2025-08-22 22:57:45 +08:00
parent 9584ab4baa
commit ea56d292ec
6 changed files with 93 additions and 47 deletions

View File

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