|
@@ -112,6 +112,7 @@ export default function Component(props: { records: any[] }) {
|
|
|
top: -rpxToPx(10)
|
|
top: -rpxToPx(10)
|
|
|
}}>More</Text>
|
|
}}>More</Text>
|
|
|
}
|
|
}
|
|
|
|
|
+ <View style={{backgroundColor:'#1C1C1C',marginLeft:rpxToPx(46),marginRight:rpxToPx(46),borderRadius:rpxToPx(24)}}>
|
|
|
|
|
|
|
|
{
|
|
{
|
|
|
selReference.categories.map((item, index) => {
|
|
selReference.categories.map((item, index) => {
|
|
@@ -131,15 +132,16 @@ export default function Component(props: { records: any[] }) {
|
|
|
showLine = true
|
|
showLine = true
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- return <View className={cellClassName} key={index}>
|
|
|
|
|
|
|
+ return <View className={cellClassName} style={{marginLeft:0,marginRight:0}} key={index}>
|
|
|
<Text className="cell_title" style={{ color: global.selMetricItem.theme_color }}>{item.value_range}</Text>
|
|
<Text className="cell_title" style={{ color: global.selMetricItem.theme_color }}>{item.value_range}</Text>
|
|
|
<Text className="cell_value" style={{ color: '#fff' }}>{item.category}</Text>
|
|
<Text className="cell_value" style={{ color: '#fff' }}>{item.category}</Text>
|
|
|
{
|
|
{
|
|
|
- showLine && <View className="cell_line" style={{ height: 1 }} />
|
|
|
|
|
|
|
+ showLine && <View className="cell_line" style={{position:'absolute',left:0,right:0,bottom:0,marginLeft:rpxToPx(40)}}></View>
|
|
|
}
|
|
}
|
|
|
</View>
|
|
</View>
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
+ </View>
|
|
|
|
|
|
|
|
</View>
|
|
</View>
|
|
|
}
|
|
}
|