This commit is contained in:
2025-08-22 23:20:39 +08:00
5 changed files with 93 additions and 33 deletions

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 }
});
};