...
|
...
|
@@ -57,6 +57,10 @@ export default class Data extends Component { |
|
|
<View style={styles.textView}>
|
|
|
<Text
|
|
|
style={styles.amountText}>{this.props.settlementInfo.settlementInfoData.settlementAmount}</Text>
|
|
|
<View style={styles.reminderView}>
|
|
|
<Image style={styles.reminderImage} source={require('../images/reminder.png')}/>
|
|
|
<Text style={styles.reminderText}>每月15日统一打款,节假日顺延</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
<View style={[styles.textView, {paddingRight: 30}]}>
|
|
|
<TouchableOpacity activeOpacity={1} onPress={() => {
|
...
|
...
|
@@ -131,8 +135,23 @@ let styles = StyleSheet.create({ |
|
|
textView: {
|
|
|
flexDirection: 'column',
|
|
|
justifyContent: 'center',
|
|
|
alignItems: 'flex-start',
|
|
|
},
|
|
|
reminderImage: {
|
|
|
width: 11,
|
|
|
height: 11,
|
|
|
},
|
|
|
reminderView: {
|
|
|
marginTop: 2,
|
|
|
flexDirection: 'row',
|
|
|
alignItems: 'center',
|
|
|
},
|
|
|
reminderText: {
|
|
|
fontFamily: 'PingFang-SC-Regular',
|
|
|
color: '#B0B0B0',
|
|
|
fontSize: 10,
|
|
|
paddingLeft: 2
|
|
|
},
|
|
|
headerBackground: {
|
|
|
width: width,
|
|
|
height: 128,
|
...
|
...
|
|