Authored by 于良

Merge branch 'classify' of http://git.yoho.cn/mobile/YH_RNComponent into classify

... ... @@ -52,12 +52,9 @@ export default function native(platform) {
render() {
const store = configureStore(getInitialState());
store.dispatch(setPlatform(platform));
let url = this.props.url;
if (url) {
let queryUrl = queryString.parse(url);
if (queryUrl.time) {
store.dispatch(setStartTime(queryUrl.time));
}
let time = this.props.time;
if (time) {
store.dispatch(setStartTime(time));
}
if(this.props.contentCode){
store.dispatch(setContentCode(this.props.contentCode));
... ...
... ... @@ -262,7 +262,7 @@ let styles = StyleSheet.create({
borderWidth: 0.5,
},
descriptionContainer: {
marginTop: 20,
marginTop: -40,
marginBottom: 50,
marginLeft: 15,
},
... ...