Authored by shangjf

修复个人中心进二级页面,返回底部白条的BUG review by 孙凯

... ... @@ -377,6 +377,7 @@ class MineContainer extends Component {
mineResource,
} = this.props.mine;
return (
<View style={styles.container}>
<MineList
isFetching={isFetching}
isNeedShowXsrz={isNeedShowXsrz}
... ... @@ -405,12 +406,19 @@ class MineContainer extends Component {
onPressFloorItem={this._onPressFloorItem}
showSimilarGuider={showSimilarGuider}
/>
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
flex: 1,
width,
height: height - 49
},
});
... ...