This commit is contained in:
ljx
2025-08-22 15:32:55 +08:00
parent 58cbe1c902
commit 6c05e20e8d
5 changed files with 205 additions and 18 deletions

View File

@ -44,7 +44,6 @@ export const importExcelFile = (query: any, data: any): AxiosPromise<any> => {
};
//招标计划列表
export const tenderPlanList = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/biddingPlan/list',
@ -106,3 +105,11 @@ export const delBiddView = (query: any): AxiosPromise<any> => {
method: 'delete'
});
};
//获取招标单位
export const getUnitList = (query: any): AxiosPromise<any> => {
return request({
url: '/supplierInput/supplierInput/getList',
method: 'get',
params: query
});
};