罗广聪

button

No preview for this file type
@@ -118,6 +118,7 @@ export default class Home extends Component { @@ -118,6 +118,7 @@ export default class Home extends Component {
118 </Text> 118 </Text>
119 </View> 119 </View>
120 </View> 120 </View>
  121 +
121 <View style={styles.configureContaier}> 122 <View style={styles.configureContaier}>
122 <View style={styles.headerContainer}> 123 <View style={styles.headerContainer}>
123 <View style={styles.titleWrapper}> 124 <View style={styles.titleWrapper}>
@@ -188,7 +189,13 @@ export default class Home extends Component { @@ -188,7 +189,13 @@ export default class Home extends Component {
188 </Row> 189 </Row>
189 </Grid> 190 </Grid>
190 </ScrollView> 191 </ScrollView>
  192 + <View style={styles.tipsContainer}>
  193 + <Image style={{width: 16, height: 16}} source={require("../../../assets/home/ic_notice.png")} />
  194 + <Text style={styles.tipsText}>保险配置预算仅供参考,实际缴费金额与投保时内容有关。</Text>
  195 + </View>
191 </View> 196 </View>
  197 +
  198 +
192 </View> 199 </View>
193 ); 200 );
194 } 201 }
@@ -316,5 +323,17 @@ const styles = StyleSheet.create({ @@ -316,5 +323,17 @@ const styles = StyleSheet.create({
316 countText: { 323 countText: {
317 fontSize: 18, 324 fontSize: 18,
318 color: "#1B9341" 325 color: "#1B9341"
319 - } 326 + },
  327 + tipsContainer: {
  328 + flexDirection: "row",
  329 + alignItems: "center",
  330 + marginHorizontal: 24,
  331 + marginBottom: 10,
  332 + },
  333 + tipsText: {
  334 + fontSize: 12,
  335 + color: "#7A7A7A",
  336 + lineHeight: 17,
  337 + marginLeft: 5,
  338 + },
320 }); 339 });