This commit is contained in:
ljx
2025-08-21 00:03:52 +08:00
parent afd59bc373
commit 25e3c62ad9
3 changed files with 56 additions and 13 deletions

View File

@ -74,7 +74,7 @@ export const delPlanning = (query: any): AxiosPromise<any> => {
method: 'delete'
});
};
//导出分标
export const importExcelFile = (params: any, data: any): AxiosPromise => {
return request({
url: '/tender/billofquantitiesLimitList/importExcelFile',
@ -83,3 +83,11 @@ export const importExcelFile = (params: any, data: any): AxiosPromise => {
data
});
};
//获取详情
export const getDetailsList = (query: any): AxiosPromise<any> => {
return request({
url: '/tender/segmentedIndicatorPlanning/getMore',
method: 'get',
params: query
});
};