This commit is contained in:
2025-08-22 20:03:33 +08:00
2 changed files with 214 additions and 43 deletions

View File

@ -91,3 +91,34 @@ 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'
});
};
//获取招标单位
export const getUnitList = (query: any): AxiosPromise<any> => {
return request({
url: '/supplierInput/supplierInput/getList',
method: 'get',
params: query
});
};
//修改状态
export const editStatus = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/biddingPlan/editStatus',
method: 'put',
data: query
});
};