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