Merge branch 'master' of http://gitlab.tianti.tg.unicom.local/eshop/fe_service_ebtp_frontend into release_electronic_bid_evaluation_room

This commit is contained in:
jl-zhoujl2
2022-09-28 14:52:03 +08:00
68 changed files with 979 additions and 928 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',
});
}