OrderInfoCell.js
3.96 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
'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 OrderInfoCell extends Component {
constructor(props) {
super(props);
}
render() {
let {orderCode, orderStatus, orderTime, payWay, offLineStore, expressExisted, showDeliveryOffline} = this.props.data;
let containerSeparator = expressExisted || showDeliveryOffline ? {borderBottomWidth:0}:{};
let rightSeparator = expressExisted || showDeliveryOffline ?{borderBottomWidth:0.5}:{};
let timeInt = parseInt(orderTime) * 1000;
let date = new Date(timeInt);
let timeStr = date.getFullYear() + '.' + ((date.getMonth() + 1) > 9
? (date.getMonth() + 1)
: '0' + (date.getMonth() + 1)) + '.' + (date.getDate() > 9
? date.getDate()
: '0' + date.getDate()) + ' ' + (date.getHours() > 9
? date.getHours()
: '0' + date.getHours()) + ':' + (date.getMinutes() > 9
? date.getMinutes()
: '0' + date.getMinutes()) + ':' + (date.getSeconds() > 9
? date.getSeconds()
: '0' + date.getSeconds());
return (
<View style={[styles.container, containerSeparator]}>
<View style={styles.leftPart}>
<Image style={{
width: 22,
height: 22
}} source={require('../../image/icon_dingdan.png')}/>
</View>
<View style={[styles.rightPart, rightSeparator]}>
<View style={styles.topPart}>
<Text style={styles.codeText}>订单编号:{orderCode}</Text>
<TouchableOpacity style={styles.copyButton} onPress={
() => {
this.props.onPressCopy&&this.props.onPressCopy(orderCode)
}
}>
<Text style={{
fontSize: 12,
color: '#444444'
}}>复制</Text>
</TouchableOpacity>
</View>
<Text style={styles.otherText}>订单状态:{orderStatus}</Text>
<Text style={styles.otherText}>下单时间:{timeStr}</Text>
{payWay&&payWay.length?<Text style={styles.otherText}>支付方式:{payWay}</Text>:null}
{offLineStore&&offLineStore.length?<Text style={styles.otherText}>下单门店:{offLineStore}</Text>:null}
</View>
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
width: width,
flexDirection: 'row',
backgroundColor: 'white',
borderColor: '#f0f0f0',
borderBottomWidth: 10
},
topPart: {
width: width - 45,
height: 20,
flexDirection: 'row',
alignItems: 'center',
marginTop: 13,
marginBottom: 2
},
codeText: {
fontSize: 14,
marginBottom: 0,
fontFamily: 'STHeitiSC-Light',
color: '#444444'
},
copyButton: {
marginLeft: 10,
width: 44,
height: 18,
borderColor: '#444444',
borderWidth: 1,
justifyContent: 'center',
alignItems: 'center'
},
leftPart: {
width: 45,
justifyContent: 'center',
alignItems: 'center'
},
rightPart: {
width: width - 45,
flexDirection: 'column',
borderColor: '#ededed',
paddingBottom: 10
},
otherText: {
fontSize: 12,
marginBottom: 3,
fontFamily: 'STHeitiSC-Light',
color: '#b0b0b0'
}
});