修改回显bug
This commit is contained in:
@ -42,3 +42,44 @@ export const updatePrice = (query: any): AxiosPromise<any> => {
|
||||
data: query
|
||||
});
|
||||
};
|
||||
//查询分标策划
|
||||
export const getPlanningList = (query: any): AxiosPromise<any> => {
|
||||
return request({
|
||||
url: '/tender/segmentedIndicatorPlanning/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
//新增分标策划
|
||||
export const segmentedIndicatorPlanning = (query: any): AxiosPromise<any> => {
|
||||
return request({
|
||||
url: '/tender/segmentedIndicatorPlanning',
|
||||
method: 'post',
|
||||
data: query
|
||||
});
|
||||
};
|
||||
//编辑分标策划
|
||||
export const updatePlanning = (query: any): AxiosPromise<any> => {
|
||||
return request({
|
||||
url: '/tender/segmentedIndicatorPlanning',
|
||||
method: 'put',
|
||||
data: query
|
||||
});
|
||||
};
|
||||
//编辑分标策划
|
||||
export const delPlanning = (query: any): AxiosPromise<any> => {
|
||||
return request({
|
||||
url: '/tender/segmentedIndicatorPlanning/' + query.ids,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
export const importExcelFile = (params: any, data: any): AxiosPromise => {
|
||||
return request({
|
||||
url: '/tender/billofquantitiesLimitList/importExcelFile',
|
||||
method: 'post',
|
||||
params,
|
||||
data
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user