Authored by 于良

plaster默认进入list review by 草莓

... ... @@ -94,19 +94,19 @@ export default function native(platform) {
}
let type = this.props.type;
if (type == 'list') {
if (type == 'detail') {
let id=this.props.id;
let udid=this.props.udid;
store.dispatch(setId(id));
return (
<Provider store={store}>
<PlustarContainer />
<DetailContainer />
</Provider>
);
} else {
let id=this.props.id;
let udid=this.props.udid;
store.dispatch(setId(id));
return (
<Provider store={store}>
<DetailContainer />
<PlustarContainer />
</Provider>
);
}
... ...