修改数据

This commit is contained in:
ljx
2025-08-20 14:28:04 +08:00
parent 30ea9bc1dd
commit c68bbc7717
3 changed files with 158 additions and 28 deletions

View File

@ -26,3 +26,11 @@ export const listBillofquantitiesLimitList = (query: any): AxiosPromise<any> =>
params: query
});
};
//修改单价
export const updatePrice = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/billofquantitiesLimitList',
method: 'put',
data: query
});
};