|
@@ -44,7 +44,7 @@ export default (props) => {
|
44
|
44
|
<View className='cpn-card-text'>
|
45
|
45
|
{(item.title).toString().length > 25 ? (item.title).substring(0, 25) + '...' : (item.title)}
|
46
|
46
|
</View>
|
47
|
|
- <View className='cpn-card-text' style={{ marginTop: '10rpx' }}>
|
|
47
|
+ <View className='cpn-card-text' style={{ lineHeight:'10px' }}>
|
48
|
48
|
<Text className='cpn-card-text_mn'>¥{`${(item.actualPrice / 100)?.toFixed(2)}元`}</Text>
|
49
|
49
|
<Text className='cpn-card-text_rm'>{`门市价${(item.standardPrice / 100)?.toFixed(2)}元`}</Text>
|
50
|
50
|
</View>
|
|
@@ -70,7 +70,7 @@ export default (props) => {
|
70
|
70
|
<View className='cpn-card-text'>
|
71
|
71
|
{(item.title).toString().length > 25 ? (item.title).substring(0, 25) + '...' : (item.title)}
|
72
|
72
|
</View>
|
73
|
|
- <View className='cpn-card-text' style={{ marginTop: '10rpx' }}>
|
|
73
|
+ <View className='cpn-card-text' style={{ lineHeight:'10px' }}>
|
74
|
74
|
<Text className='cpn-card-text_mn'>¥{`${formatPrice(item.averagePrice)}元`}</Text>
|
75
|
75
|
</View>
|
76
|
76
|
<View className='cpn-md-act'>
|