amis2/examples/components/EventAction/cmpt-event-action/ExcelEvent.jsx
hsm-lv 4acfbb99ce
feat:优化动作数据域 (#5544)
* feat:优化事件数据域

* feat:优化事件数据域

* feat:优化事件数据域(option->item,options->items)

* feat:优化事件数据域(version)

* feat:优化事件数据域(修复弹窗事件多次触发&并行数据获取问题)

* feat:优化事件数据域(删除多余代码)

* feat:优化事件数据域(更新文档)

* feat:优化事件数据域(更新文档)

* feat:优化动作数据域

* feat:优化动作数据域
2022-10-12 15:09:03 +08:00

76 lines
1.5 KiB
JavaScript

const changeEvent = {
actions: [
{
actionType: 'dialog',
args: {
val: '${file}'
},
dialog: {
title: `派发change事件`,
data: {
val: '${val}'
},
body: [
{
type: 'tpl',
tpl: '${val|json}'
}
]
}
}
]
};
export default {
type: 'page',
title: 'excel事件',
regions: ['body', 'toolbar', 'header'],
body: [
{
type: 'tpl',
tpl: 'InputExcel',
inline: false,
wrapperComponent: 'h2'
},
{
type: 'form',
debug: true,
api: '/api/mock2/form/saveForm',
body: [
{
type: 'group',
body: [
{
name: 'trigger1',
id: 'trigger1',
type: 'action',
label: 'clear触发器',
level: 'primary',
onEvent: {
click: {
actions: [
{
actionType: 'clear',
componentId: 'clear-input-excel',
description: '点击清除数据'
}
]
}
}
},
{
type: 'input-excel',
id: 'clear-input-excel',
name: 'file',
multiple: true,
onEvent: {
change: changeEvent
}
}
]
}
]
}
]
};