|
@@ -19,7 +19,7 @@ class SearchList extends React.PureComponent {
|
19
|
19
|
body: PropTypes.object,
|
20
|
20
|
pagination: PropTypes.object,
|
21
|
21
|
service: PropTypes.func,
|
22
|
|
- reServe: PropTypes.func,
|
|
22
|
+ ejectRetrieve: PropTypes.func,
|
23
|
23
|
}
|
24
|
24
|
|
25
|
25
|
state = {
|
|
@@ -34,8 +34,8 @@ class SearchList extends React.PureComponent {
|
34
|
34
|
}
|
35
|
35
|
|
36
|
36
|
componentDidMount () {
|
37
|
|
- if (this.props.reServe) {
|
38
|
|
- this.props.reServe(this.queryData)
|
|
37
|
+ if (this.props.ejectRetrieve) {
|
|
38
|
+ this.props.ejectRetrieve(this.queryData)
|
39
|
39
|
}
|
40
|
40
|
}
|
41
|
41
|
|