调整样式
This commit is contained in:
@@ -115,8 +115,8 @@
|
||||
}
|
||||
|
||||
&__img {
|
||||
width: 72rpx;
|
||||
height: 72rpx;
|
||||
width: 120rpx;
|
||||
height: 120rpx;
|
||||
border-radius: 8rpx;
|
||||
background: #f2f3f5;
|
||||
flex-shrink: 0;
|
||||
@@ -149,6 +149,14 @@
|
||||
|
||||
&__amount {
|
||||
font-size: 28rpx;
|
||||
color: #ee0a24;
|
||||
font-weight: 500;
|
||||
display: block;
|
||||
margin-top: 4rpx;
|
||||
}
|
||||
|
||||
&__price {
|
||||
font-size: 24rpx;
|
||||
color: #323233;
|
||||
font-weight: 500;
|
||||
display: block;
|
||||
|
||||
@@ -161,13 +161,17 @@ export default function BillDetailPage() {
|
||||
/>
|
||||
)}
|
||||
<View className='bill-goods__main'>
|
||||
<Text className='bill-goods__name'>{item.product_name}</Text>
|
||||
<Text className='bill-goods__spec'>
|
||||
{formatSpec(item.product_spec, item.unit)}{' ¥'}{item.price}
|
||||
</Text>
|
||||
<View className='bill-goods__name'>{item.product_name}</View>
|
||||
<View className='bill-goods__spec'>
|
||||
{formatSpec(item.product_spec, item.unit)}
|
||||
</View>
|
||||
<View className='bill-goods__spec'>
|
||||
单价:{formatRetailPrice(item.price, item.spec)} {item.price_unit}
|
||||
</View>
|
||||
</View>
|
||||
<View className='bill-goods__side'>
|
||||
<Text className='bill-goods__amount'>¥{item.price} × {item.quantity}</Text>
|
||||
<Text className='bill-goods__price'>¥{item.price} × {item.quantity}</Text>
|
||||
<View className='bill-goods__amount'>¥{item.amount}</View>
|
||||
</View>
|
||||
</View>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user