|
@@ -25,7 +25,9 @@ export default (props) => {
|
25
|
25
|
<image className='orderImg' src={item.poster} mode='aspectFit' />
|
26
|
26
|
<view className='orderRight'>
|
27
|
27
|
<view className='foodName'>{item.description}</view>
|
28
|
|
- <view className='price'>合计金额:¥<text style={{ fontSize: '24rpx' }}>{(item.actualPrice / 100) - (item.commissionCharge / 100).toFixed(2)}</text>元 <text className='pnum'>数量:<text>1</text>张</text> </view>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+ <view className='price'>合计金额:¥<text style={{ fontSize: '24rpx' }}>{(item.actualPrice / 100) - (item.cashback / 100) - (item.commissionCharge / 100).toFixed(2)}</text>元 <text className='pnum'>数量:<text>1</text>张</text> </view>
|
29
|
31
|
<view>已下单:等待客户上门就餐</view>
|
30
|
32
|
</view>
|
31
|
33
|
<view className='line' />
|