update
This commit is contained in:
parent
834c04b948
commit
77e4198807
@ -130,7 +130,7 @@
|
||||
<view class="header">商品总额</view>
|
||||
<view class="body">
|
||||
<text>¥</text>
|
||||
<text class="total">{{ sumBigInts }}</text>
|
||||
<text class="total">{{ orderItem.order_product_amount }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cell">
|
||||
@ -139,7 +139,7 @@
|
||||
</view>
|
||||
<view class="cell" v-if="orderItem.packing_fee > 0">
|
||||
<view class="header">打包费用</view>
|
||||
<view class="body red">- ¥{{ orderItem.packing_fee }}</view>
|
||||
<view class="body green">+ ¥{{ orderItem.packing_fee }}</view>
|
||||
</view>
|
||||
<view class="cell">
|
||||
<view class="header">平台佣金</view>
|
||||
@ -151,6 +151,13 @@
|
||||
</view>
|
||||
<view class="cell">
|
||||
<view class="header">合计实收</view>
|
||||
<view class="body">
|
||||
¥
|
||||
<text class="count">{{ orderItem.order_payment_amount }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="cell">
|
||||
<view class="header">预计收入</view>
|
||||
<view class="body">
|
||||
¥
|
||||
<text class="count">{{ orderItem.order_income_amount }}</text>
|
||||
@ -1108,6 +1115,10 @@ export default {
|
||||
color: #fe411b;
|
||||
}
|
||||
|
||||
.green {
|
||||
color: #62d910;
|
||||
}
|
||||
|
||||
text {
|
||||
color: #222;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user