mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 10:38:16 +08:00
解决api重写后覆盖无效 (#11275)
This commit is contained in:
parent
767017e763
commit
59de94217c
@ -24,53 +24,55 @@ registerActionPanel('ajax', {
|
||||
</div>
|
||||
);
|
||||
},
|
||||
schema: {
|
||||
type: 'wrapper',
|
||||
className: 'p-none',
|
||||
body: [
|
||||
getSchemaTpl('apiControl', {
|
||||
name: 'api',
|
||||
label: '配置请求',
|
||||
mode: 'horizontal',
|
||||
size: 'lg',
|
||||
inputClassName: 'm-b-none',
|
||||
renderLabel: true,
|
||||
required: true
|
||||
}),
|
||||
{
|
||||
name: 'options',
|
||||
type: 'combo',
|
||||
label: tipedLabel(
|
||||
'静默请求',
|
||||
'开启后,服务请求将以静默模式发送,即不会弹出成功或报错提示。'
|
||||
),
|
||||
mode: 'horizontal',
|
||||
items: [
|
||||
{
|
||||
type: 'switch',
|
||||
name: 'silent',
|
||||
label: false,
|
||||
onText: '开启',
|
||||
offText: '关闭',
|
||||
mode: 'horizontal',
|
||||
pipeIn: defaultValue(false)
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'outputVar',
|
||||
type: 'input-text',
|
||||
label: '请求结果',
|
||||
placeholder: '请输入存储请求结果的变量名称',
|
||||
description:
|
||||
'如需执行多次发送请求,可以修改此变量名用于区分不同请求返回的结果',
|
||||
mode: 'horizontal',
|
||||
size: 'lg',
|
||||
value: 'responseResult',
|
||||
required: true
|
||||
}
|
||||
]
|
||||
},
|
||||
schema: () => [
|
||||
{
|
||||
type: 'wrapper',
|
||||
className: 'p-none',
|
||||
body: [
|
||||
getSchemaTpl('apiControl', {
|
||||
name: 'api',
|
||||
label: '配置请求',
|
||||
mode: 'horizontal',
|
||||
size: 'lg',
|
||||
inputClassName: 'm-b-none',
|
||||
renderLabel: true,
|
||||
required: true
|
||||
}),
|
||||
{
|
||||
name: 'options',
|
||||
type: 'combo',
|
||||
label: tipedLabel(
|
||||
'静默请求',
|
||||
'开启后,服务请求将以静默模式发送,即不会弹出成功或报错提示。'
|
||||
),
|
||||
mode: 'horizontal',
|
||||
items: [
|
||||
{
|
||||
type: 'switch',
|
||||
name: 'silent',
|
||||
label: false,
|
||||
onText: '开启',
|
||||
offText: '关闭',
|
||||
mode: 'horizontal',
|
||||
pipeIn: defaultValue(false)
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'outputVar',
|
||||
type: 'input-text',
|
||||
label: '请求结果',
|
||||
placeholder: '请输入存储请求结果的变量名称',
|
||||
description:
|
||||
'如需执行多次发送请求,可以修改此变量名用于区分不同请求返回的结果',
|
||||
mode: 'horizontal',
|
||||
size: 'lg',
|
||||
value: 'responseResult',
|
||||
required: true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
outputVarDataSchema: [
|
||||
{
|
||||
type: 'object',
|
||||
|
Loading…
Reference in New Issue
Block a user