Authored by chenl

调整了线描边。review by caomei。

@@ -130,21 +130,21 @@ let styles = StyleSheet.create({ @@ -130,21 +130,21 @@ let styles = StyleSheet.create({
130 lineHeight: 22, 130 lineHeight: 22,
131 }, 131 },
132 footContainer: { 132 footContainer: {
133 - width: rowWidth-20, 133 + width: Platform.OS === 'ios' ? rowWidth-20 : rowWidth-16,
134 height: 18, 134 height: 18,
135 flexDirection: 'row', 135 flexDirection: 'row',
136 alignItems: 'center', 136 alignItems: 'center',
137 }, 137 },
138 clockImage: { 138 clockImage: {
139 - width: 12,  
140 - height: 12, 139 + width: Platform.OS === 'ios' ? 12 : 9,
  140 + height: Platform.OS === 'ios' ? 12 : 9,
141 marginRight: 0, 141 marginRight: 0,
142 }, 142 },
143 eyeImage: { 143 eyeImage: {
144 - width: 16,  
145 - height: 12, 144 + width: Platform.OS === 'ios' ? 16 : 12,
  145 + height: Platform.OS === 'ios' ? 12 : 9,
146 marginRight: 0, 146 marginRight: 0,
147 - marginLeft: 10, 147 + marginLeft: Platform.OS === 'ios' ? 10 : 7,
148 }, 148 },
149 text: { 149 text: {
150 fontSize: 10, 150 fontSize: 10,
@@ -431,9 +431,6 @@ let styles = StyleSheet.create({ @@ -431,9 +431,6 @@ let styles = StyleSheet.create({
431 width: width, 431 width: width,
432 height: 15, 432 height: 15,
433 backgroundColor: '#f0f0f0', 433 backgroundColor: '#f0f0f0',
434 - borderColor: '#e0e0e0',  
435 - borderTopWidth: 1,  
436 - borderBottomWidth: 1,  
437 }, 434 },
438 placeholder: { 435 placeholder: {
439 width, 436 width,
@@ -470,9 +467,6 @@ let styles = StyleSheet.create({ @@ -470,9 +467,6 @@ let styles = StyleSheet.create({
470 marginLeft: -1, 467 marginLeft: -1,
471 width: width + 2, 468 width: width + 2,
472 height: 40, 469 height: 40,
473 - borderTopColor: '#e5e5e5',  
474 - borderBottomColor: '#e5e5e5',  
475 - borderWidth: 0.5,  
476 }, 470 },
477 backToTopButton: { 471 backToTopButton: {
478 position: 'absolute', 472 position: 'absolute',
@@ -98,8 +98,5 @@ let styles = StyleSheet.create({ @@ -98,8 +98,5 @@ let styles = StyleSheet.create({
98 width: width, 98 width: width,
99 height: 15, 99 height: 15,
100 backgroundColor: '#f0f0f0', 100 backgroundColor: '#f0f0f0',
101 - borderColor: '#e0e0e0',  
102 - borderTopWidth: 1,  
103 - borderBottomWidth: 1,  
104 }, 101 },
105 }); 102 });