Merge branch '20220613-将PUT和DELETE请求更改成POST请求' into 'release_20220923'

9.23 1、将PUT和DELETE请求更改成POST请求 2、重评点击保存一直转圈

See merge request eshop/fe_service_ebtp_frontend!4
This commit is contained in:
jl-zhoujl2
2022-09-23 07:54:45 +00:00
54 changed files with 668 additions and 647 deletions

View File

@ -50,7 +50,7 @@ export async function getById(id: any) {
*/
export async function deleteClarify(id: any) {
return request('/api/biz-service-ebtp-tender/v1/clarifydissent/delete_clarify/' + id, {
method: 'put',
method: 'POST',
});
}
/**
@ -59,7 +59,7 @@ export async function deleteClarify(id: any) {
*/
export async function releaseClarify(id: any) {
return request('/api/biz-service-ebtp-tender/v1/clarifydissent/release_clarify/' + id, {
method: 'put',
method: 'POST',
});
}
/**
@ -100,7 +100,7 @@ export async function clarifyReply(id: any) {
*/
export function getSections(projectId: any, roomType: any) {
return request('/api/biz-service-ebtp-tender/v1/clarifydissent/packages/' + projectId + '?roomType=' + roomType, {
method: 'put'
method: 'POST'
});
}
/**

View File

@ -17,7 +17,7 @@ export async function getSecs(params?: any) {
//删除
export async function delOne(params?: any) {
return request(`/api/biz-service-ebtp-rsms/v1/jury/info/${params.id}`, {
method: 'DELETE'
method: 'POST'
});
}
//创建评审小组
@ -54,7 +54,7 @@ export async function queryVoList(params?: any) {
//更换专家
export async function changeMember(params?: any) {
return request(`/api/biz-service-ebtp-rsms/v1/jury/change/member`, {
method: 'PUT',
method: 'POST',
data: {
...params
}

View File

@ -60,6 +60,6 @@ export function getSections(projectId: any) {
*/
export function changeSupStatus(dissentId: any) {
return request('/api/biz-service-ebtp-tender/v1/clarifydissent/checkReply/' + dissentId, {
method: 'PUT',
method: 'POST',
});
}