InvoiceCell.js
2.4 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
'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 InvoiceCell 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 {type, title, contentValue, showInvoice, pdfUrl} = this.props.data.toJS();
let invoiceType = type == '1' ? '纸质发票' : '电子发票' ;
let showLast = showInvoice && type == '2' && pdfUrl && pdfUrl.length;
return (
<View style={styles.container}>
{this.renderCell('发票信息', invoiceType, false)}
{this.renderCell('发票抬头', title, false)}
{this.renderCell('发票内容', contentValue, false)}
{showLast ? this.renderCell('', '点击查看电子发票', true) : null}
</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'
}
});