修改审核
This commit is contained in:
@ -91,3 +91,11 @@ export const getDetailsList = (query: any): AxiosPromise<any> => {
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
//获取版本详情
|
||||
export const getVersionDetails = (id: any): AxiosPromise<any> => {
|
||||
return request({
|
||||
url: '/tender/tenderPlanLimitList/getVersionDetail/' + id,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
@ -122,11 +122,10 @@ export const editStatus = (query: any): AxiosPromise<any> => {
|
||||
data: query
|
||||
});
|
||||
};
|
||||
//获取审核状态
|
||||
export const getApproval = (id) => {
|
||||
//获取版本详情
|
||||
export const getVersionDetail = (id: any) => {
|
||||
return request({
|
||||
url: '/tender/tenderPlanLimitList/getVersionDetail',
|
||||
method: 'get',
|
||||
params: { versions: id }
|
||||
url: '/tender/tenderPlanLimitList/getVersionDetail/' + id,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user