6.20 前端put和delete请求类型修改为post

This commit is contained in:
jl-zhoujl2
2022-06-20 14:35:50 +08:00
parent 7dc348be97
commit 9b3fabfbc9
54 changed files with 670 additions and 649 deletions

View File

@ -71,7 +71,7 @@ export async function getJuryDetailScoreData(params: any) {
*/
export function updateReviewStatus(params: any) {
return request('/api/biz-service-ebtp-rsms/v1/bid/eval/updateReviewStatus', {
method: 'put',
method: 'POST',
params
});
}
@ -99,10 +99,10 @@ export function findPriceScoreRecord(params: any) {
* 根据评审室id获取评审室信息
* @param params
*/
export async function getRoomDataById(params: any) {
export async function getRoomDataById(params: any) {
return request(`/api/biz-service-ebtp-process/v1/bizassessroom/${params}`, {
method: 'GET',
method: 'GET',
});
}
}