一次性加载数据同步问题
This commit is contained in:
parent
2cc4e101f6
commit
9e3641571c
|
@ -10,7 +10,9 @@
|
|||
background-color: $Form-input-onError-bg;
|
||||
}
|
||||
|
||||
&.is-focused {
|
||||
&.is-focused,
|
||||
&:focus {
|
||||
outline: none;
|
||||
border-color: $Form-input-onFocused-borderColor;
|
||||
box-shadow: $Form-input-boxShadow;
|
||||
|
||||
|
|
|
@ -443,7 +443,7 @@ export default class CRUD extends React.Component<CRUDProps, any> {
|
|||
|
||||
action.reload
|
||||
? this.reloadTarget(action.reload, data)
|
||||
: this.search({[pageField || 'page']: 1}, undefined, true);
|
||||
: this.search({[pageField || 'page']: 1}, undefined, true, true);
|
||||
action.close && this.closeTarget(action.close);
|
||||
|
||||
const redirect = action.redirect && filter(action.redirect, data);
|
||||
|
|
Loading…
Reference in New Issue