罗广聪

button

No preview for this file type
... ... @@ -118,6 +118,7 @@ export default class Home extends Component {
</Text>
</View>
</View>
<View style={styles.configureContaier}>
<View style={styles.headerContainer}>
<View style={styles.titleWrapper}>
... ... @@ -188,7 +189,13 @@ export default class Home extends Component {
</Row>
</Grid>
</ScrollView>
<View style={styles.tipsContainer}>
<Image style={{width: 16, height: 16}} source={require("../../../assets/home/ic_notice.png")} />
<Text style={styles.tipsText}>保险配置预算仅供参考,实际缴费金额与投保时内容有关。</Text>
</View>
</View>
</View>
);
}
... ... @@ -316,5 +323,17 @@ const styles = StyleSheet.create({
countText: {
fontSize: 18,
color: "#1B9341"
}
},
tipsContainer: {
flexDirection: "row",
alignItems: "center",
marginHorizontal: 24,
marginBottom: 10,
},
tipsText: {
fontSize: 12,
color: "#7A7A7A",
lineHeight: 17,
marginLeft: 5,
},
});
... ...