...
|
...
|
@@ -15,7 +15,7 @@ import detailInitialState from './reducers/detail/detailInitialState'; |
|
|
import ListContainer from './containers/ListContainer';
|
|
|
import DetailContainer from './containers/DetailContainer';
|
|
|
|
|
|
import {setPlatform, setHost, setServiceHost, setSingleHost, setChannel} from './reducers/app/appActions';
|
|
|
import {setPlatform, setHost, setServiceHost, setSingleHost, setChannel, setShowAntiFraud} from './reducers/app/appActions';
|
|
|
|
|
|
import {setOrderCode} from './reducers/detail/detailActions';
|
|
|
|
...
|
...
|
@@ -41,6 +41,7 @@ export default function native(platform) { |
|
|
store.dispatch(setServiceHost(this.props.serviceHost));
|
|
|
store.dispatch(setSingleHost(this.props.singleHost));
|
|
|
store.dispatch(setChannel(this.props.channelId));
|
|
|
store.dispatch(setShowAntiFraud(this.props.showAntiFraud));
|
|
|
let type = this.props.type;
|
|
|
if (type == 'list') {
|
|
|
store.dispatch(setShowIndex(this.props.firstShowIndex));
|
...
|
...
|
|