This commit is contained in:
2025-08-21 00:22:16 +08:00
3 changed files with 61 additions and 14 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
});
};