mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
将请求方式修改为大写,修复openapi回调执行调用接口失败的问题
This commit is contained in:
@ -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',
|
||||
},
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user