Authored by 陈林

适配android UI。review by 张文文。

@@ -127,6 +127,7 @@ const styles = StyleSheet.create({ @@ -127,6 +127,7 @@ const styles = StyleSheet.create({
127 }, 127 },
128 contentContainer: { 128 contentContainer: {
129 width: width, 129 width: width,
  130 + flex: 1,
130 backgroundColor: 'white', 131 backgroundColor: 'white',
131 paddingBottom: 55 * DEVICE_WIDTH_RATIO, 132 paddingBottom: 55 * DEVICE_WIDTH_RATIO,
132 }, 133 },
@@ -135,6 +136,7 @@ const styles = StyleSheet.create({ @@ -135,6 +136,7 @@ const styles = StyleSheet.create({
135 height: 118 * DEVICE_WIDTH_RATIO, 136 height: 118 * DEVICE_WIDTH_RATIO,
136 }, 137 },
137 middleView: { 138 middleView: {
  139 + backgroundColor: 'white',
138 height: 50 * DEVICE_WIDTH_RATIO, 140 height: 50 * DEVICE_WIDTH_RATIO,
139 flexDirection: 'row', 141 flexDirection: 'row',
140 alignItems: 'center', 142 alignItems: 'center',
@@ -31,7 +31,7 @@ export default class Statistics extends Component { @@ -31,7 +31,7 @@ export default class Statistics extends Component {
31 this.props.resourceJumpWithUrl && this.props.resourceJumpWithUrl(url); 31 this.props.resourceJumpWithUrl && this.props.resourceJumpWithUrl(url);
32 }} > 32 }} >
33 33
34 - <View style={{width: width / 2, paddingLeft: 30, marginTop: -10}}> 34 + <View style={{width: width / 2, paddingLeft: 30, marginTop: -9}}>
35 <Text style={styles.numberText}>¥{statisticsInfo.orderAmountSum}</Text> 35 <Text style={styles.numberText}>¥{statisticsInfo.orderAmountSum}</Text>
36 <Text style={styles.tipsText}>预估订单佣金</Text> 36 <Text style={styles.tipsText}>预估订单佣金</Text>
37 </View> 37 </View>
@@ -45,7 +45,7 @@ export default class Statistics extends Component { @@ -45,7 +45,7 @@ export default class Statistics extends Component {
45 this.props.resourceJumpWithUrl && this.props.resourceJumpWithUrl(url); 45 this.props.resourceJumpWithUrl && this.props.resourceJumpWithUrl(url);
46 }} > 46 }} >
47 47
48 - <View style={{width: width / 2, paddingLeft: 30, marginTop: -10}}> 48 + <View style={{width: width / 2, paddingLeft: 30, marginTop: -9}}>
49 <Text style={styles.numberText}>¥{statisticsInfo.extraAmountSum}</Text> 49 <Text style={styles.numberText}>¥{statisticsInfo.extraAmountSum}</Text>
50 <Text style={styles.tipsText}>预估其他佣金</Text> 50 <Text style={styles.tipsText}>预估其他佣金</Text>
51 </View> 51 </View>