Merge branch '5.6.0' of http://git.yoho.cn/mobile/YH_RNComponent into 5.6.0
Showing
2 changed files
with
16 additions
and
6 deletions
@@ -67,7 +67,7 @@ export default class ActionView extends Component { | @@ -67,7 +67,7 @@ export default class ActionView extends Component { | ||
67 | {this.showTimer && this.state.timeLeft | 67 | {this.showTimer && this.state.timeLeft |
68 | ? <View style={styles.timerContainer}> | 68 | ? <View style={styles.timerContainer}> |
69 | <Image style={styles.clockImage} source={require('../../image/countDown.png')}/> | 69 | <Image style={styles.clockImage} source={require('../../image/countDown.png')}/> |
70 | - <Text style={{width: 90,fontSize:14,color:'#b0b0b0',marginLeft: 4}}>{this.state.timerString}</Text> | 70 | + <Text style={styles.time}>{this.state.timerString}</Text> |
71 | </View> | 71 | </View> |
72 | : null | 72 | : null |
73 | } | 73 | } |
@@ -208,5 +208,11 @@ let styles = StyleSheet.create({ | @@ -208,5 +208,11 @@ let styles = StyleSheet.create({ | ||
208 | redText: { | 208 | redText: { |
209 | fontSize: 14, | 209 | fontSize: 14, |
210 | color: '#d0021b' | 210 | color: '#d0021b' |
211 | + }, | ||
212 | + time:{ | ||
213 | + width: 90, | ||
214 | + fontSize:14, | ||
215 | + color:'#b0b0b0', | ||
216 | + marginLeft: 4, | ||
211 | } | 217 | } |
212 | }); | 218 | }); |
@@ -68,7 +68,7 @@ export default class ListFooter extends Component { | @@ -68,7 +68,7 @@ export default class ListFooter extends Component { | ||
68 | {payInfoString} | 68 | {payInfoString} |
69 | </Text> | 69 | </Text> |
70 | <Text style={styles.amount}> | 70 | <Text style={styles.amount}> |
71 | - {'¥'+(orderAmout)} | 71 | + {' ¥'+(orderAmout)} |
72 | </Text> | 72 | </Text> |
73 | <Text style={styles.shippingCost}> | 73 | <Text style={styles.shippingCost}> |
74 | {shipCostString} | 74 | {shipCostString} |
@@ -106,19 +106,23 @@ let styles = StyleSheet.create({ | @@ -106,19 +106,23 @@ let styles = StyleSheet.create({ | ||
106 | backgroundColor: 'transparent', | 106 | backgroundColor: 'transparent', |
107 | maxWidth: width-30, | 107 | maxWidth: width-30, |
108 | color: '#444444', | 108 | color: '#444444', |
109 | - fontSize: 16 | 109 | + fontSize: 16, |
110 | + fontWeight: '100' | ||
110 | }, | 111 | }, |
111 | payInfo: { | 112 | payInfo: { |
112 | fontSize: 16, | 113 | fontSize: 16, |
113 | - color:'#444444' | 114 | + color:'#444444', |
115 | + fontWeight: '100' | ||
114 | }, | 116 | }, |
115 | amount: { | 117 | amount: { |
116 | fontSize: 16, | 118 | fontSize: 16, |
117 | - color:'#d0021b' | 119 | + color:'#d0021b', |
120 | + fontWeight:'normal' | ||
118 | }, | 121 | }, |
119 | shippingCost: { | 122 | shippingCost: { |
120 | fontSize: 12, | 123 | fontSize: 12, |
121 | - color: '#444444' | 124 | + color: '#444444', |
125 | + fontWeight: '100', | ||
122 | }, | 126 | }, |
123 | line: { | 127 | line: { |
124 | backgroundColor: '#e5e5e5', | 128 | backgroundColor: '#e5e5e5', |
-
Please register or login to post a comment