This commit is contained in:
ljx
2025-08-22 17:32:24 +08:00
parent f4cbde8ee2
commit e182b87f02
2 changed files with 76 additions and 15 deletions

View File

@ -113,3 +113,11 @@ export const getUnitList = (query: any): AxiosPromise<any> => {
params: query
});
};
//修改状态
export const editStatus = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/biddingPlan/editStatus',
method: 'put',
data: query
});
};