将请求方式修改为大写,修复openapi回调执行调用接口失败的问题

This commit is contained in:
xlh12306
2025-05-14 22:04:06 +08:00
parent 49ba40e98a
commit a56bd05389
2 changed files with 80 additions and 25 deletions

View File

@ -74,34 +74,34 @@ export const formSchema: FormSchema[] = [
componentProps:{
dictOptions: [
{
text: 'post',
value: 'post',
text: 'POST',
value: 'POST',
},
{
text: 'get',
value: 'get',
text: 'GET',
value: 'GET',
},
{
text: 'head',
value: 'head',
text: 'HEAD',
value: 'HEAD',
},
{
text: 'put',
value: 'put',
text: 'PUT',
value: 'PUT',
},
{
text: 'patch',
value: 'patch',
text: 'PATCH',
value: 'PATCH',
},
{
text: 'delete',
value: 'delete',
text: 'DELETE',
value: 'DELETE',
},{
text: 'options',
value: 'options',
text: 'OPTIONS',
value: 'OPTIONS',
},{
text: 'trace',
value: 'trace',
text: 'TRACE',
value: 'TRACE',
},
]
},