This commit is contained in:
qijq 2025-08-18 11:11:40 +08:00
parent 834c04b948
commit 77e4198807

View File

@ -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;
}