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

@ -7,7 +7,7 @@ import request from '@/utils/request';
*/
export function saveAttachment(data: any) {
return request('/api/biz-service-ebtp-bid/v1/anno/update/' + data.id, {
method: 'PUT',
method: 'POST',
data: { ...data },
});
}