This commit is contained in:
ljx
2025-08-22 11:42:12 +08:00
parent 5556264b9e
commit dbc26a3d49
4 changed files with 143 additions and 255 deletions

View File

@ -91,3 +91,18 @@ export const getTenderPlanDetail = (query: any): AxiosPromise<any> => {
params: query
});
};
//查看招标文件
export const biddViewLook = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/biddingPlan/getAnnex',
method: 'get',
params: query
});
};
//删除招标文件
export const delBiddView = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/biddingPlanAnnex/' + query.ids,
method: 'delete'
});
};