PaymentInfoCell.js
2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
'use strict';
import React, {Component} from 'react';
import Immutable, {Map} from 'immutable';
import ReactNative, {
View,
Text,
Image,
ListView,
StyleSheet,
Dimensions,
TouchableOpacity,
InteractionManager,
Platform
} from 'react-native';
export default class PaymentInfoCell extends Component {
constructor(props) {
super(props);
this.renderCell = this.renderCell.bind(this);
}
renderCell(left, right, last = false) {
let color = last
? '#d0021b'
: 'black';
return (
<View style={styles.cellContainer}>
<View style={styles.leftPart}>
<Text style={[styles.text, {fontFamily: 'STHeitiSC-Light'}]}>{left}</Text>
</View>
<View style={styles.rightPart}>
<Text style={[styles.text, {
color
}]}>{right}</Text>
</View>
</View>
)
}
render() {
let {promotionAry, total, type} = this.props.data;
let payment_desc = type == '2' ? '应付金额' : '实付金额' ;
return (
<View style={styles.container}>
{promotionAry.toJS().map((item, i) => {
let {promotion, promotion_amount} = item;
return (
<View style={styles.cellContainer} key={i}>
<View style={styles.leftPart}>
<Text style={[styles.text, {fontFamily: 'STHeitiSC-Light'}]}>{promotion}</Text>
</View>
<View style={styles.rightPart}>
<Text style={[
styles.text, {
color: 'black'
}
]}>{promotion_amount}</Text>
</View>
</View>
)
})}
{this.renderCell(payment_desc, '¥' + total, true)}
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
width: width,
flexDirection: 'column',
backgroundColor: 'white',
alignItems: 'center',
borderColor: '#f0f0f0',
borderBottomWidth: 10,
paddingTop: 9,
paddingBottom: 9
},
cellContainer: {
width: width - 30,
height: 20,
flexDirection: 'row'
},
leftPart: {
flex: 1,
justifyContent: 'flex-start',
alignItems: 'center',
flexDirection: 'row'
},
rightPart: {
flex: 1,
justifyContent: 'flex-end',
alignItems: 'center',
flexDirection: 'row'
},
text: {
fontSize: 14,
color: '#444444',
}
});