mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 10:59:42 +08:00
feat: 向导组件 事件&动作 配置
This commit is contained in:
parent
94e2fb327f
commit
e45f3dbb8d
@ -32,11 +32,6 @@ order: 73
|
||||
"label": "邮箱",
|
||||
"type": "input-email",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name": "ajax",
|
||||
"label": "按钮",
|
||||
"type": "button"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -89,43 +89,6 @@ export default {
|
||||
title: '向导组件事件',
|
||||
regions: ['body', 'toolbar', 'header'],
|
||||
body: [
|
||||
<<<<<<< HEAD
|
||||
// {
|
||||
// name: "wizard-next",
|
||||
// type: "button",
|
||||
// label: '跳转下一步',
|
||||
// level: 'primary',
|
||||
// onEvent: {
|
||||
// click: {
|
||||
// actions: [
|
||||
// {
|
||||
// actionType: 'next',
|
||||
// componentId: 'wizard-receiver',
|
||||
// description: '跳转下一步'
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
// {
|
||||
// name: "wizard-prev",
|
||||
// type: "button",
|
||||
// label: '跳转上一步',
|
||||
// level: 'primary',
|
||||
// onEvent: {
|
||||
// click: {
|
||||
// actions: [
|
||||
// {
|
||||
// actionType: 'prev',
|
||||
// componentId: 'wizard-receiver',
|
||||
// description: '跳转上一步'
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
// }
|
||||
// },
|
||||
=======
|
||||
>>>>>>> 700b723e (feat: 向导组件 事件&动作 配置)
|
||||
...generateActions([
|
||||
{
|
||||
actionName: 'prev',
|
||||
|
@ -229,7 +229,7 @@ export default class Wizard extends React.Component<WizardProps, WizardState> {
|
||||
initFinishedField,
|
||||
store,
|
||||
messages: {fetchSuccess, fetchFailed},
|
||||
onInit // c
|
||||
onInit
|
||||
} = this.props;
|
||||
|
||||
if (isEffectiveApi(initApi, store.data, initFetch)) {
|
||||
@ -675,7 +675,7 @@ export default class Wizard extends React.Component<WizardProps, WizardState> {
|
||||
redirect,
|
||||
reload,
|
||||
env,
|
||||
onFinished // c
|
||||
onFinished
|
||||
} = this.props;
|
||||
|
||||
if (await this.dispatchEvent('finished', store.data)) {
|
||||
|
Loading…
Reference in New Issue
Block a user