mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 11:58:10 +08:00
Wizard 的 step 上配置 rediret 和 reload 使其生效
This commit is contained in:
parent
96ea06d828
commit
fbebcb31e4
@ -553,13 +553,16 @@ export default class Wizard extends React.Component<WizardProps, WizardState> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const finalRedirect =
|
const finalRedirect =
|
||||||
(action.redirect || redirect) &&
|
(action.redirect || step.redirect || redirect) &&
|
||||||
filter(action.redirect || redirect, store.data);
|
filter(action.redirect || step.redirect || redirect, store.data);
|
||||||
|
|
||||||
if (finalRedirect) {
|
if (finalRedirect) {
|
||||||
env.jumpTo(finalRedirect, action);
|
env.jumpTo(finalRedirect, action);
|
||||||
} else if (action.reload || reload) {
|
} else if (action.reload || step.reload || reload) {
|
||||||
this.reloadTarget(action.reload || reload, store.data);
|
this.reloadTarget(
|
||||||
|
action.reload || step.reload || reload,
|
||||||
|
store.data
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
|
Loading…
Reference in New Issue
Block a user