合并
This commit is contained in:
@ -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
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user