This commit is contained in:
ljx
2025-08-20 15:17:37 +08:00
parent c68bbc7717
commit 2c7b056405
3 changed files with 187 additions and 13 deletions

View File

@ -26,6 +26,14 @@ export const listBillofquantitiesLimitList = (query: any): AxiosPromise<any> =>
params: query
});
};
//获取一览数据树
export const treeList = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/billofquantitiesLimitList/getTree',
method: 'get',
params: query
});
};
//修改单价
export const updatePrice = (query: any): AxiosPromise<any> => {
return request({