This commit is contained in:
2026-04-24 00:28:52 +08:00
parent 6be9d4afb7
commit 524ff8cd32
27 changed files with 568 additions and 314 deletions
@@ -70,6 +70,14 @@
<text class="info-label">优惠券</text>
<text class="info-value discount">-¥{{ order.couponDiscount }}</text>
</view>
<view class="info-row flex-between">
<text class="info-label">软件服务费</text>
<text class="info-value service-fee">-¥{{ order.serviceFee || 0 }}</text>
</view>
<view class="info-row flex-between">
<text class="info-label">预计收入</text>
<text class="info-value merchant-income">¥{{ order.merchantIncome || order.payAmount }}</text>
</view>
<view class="info-row flex-between total-row">
<text class="info-label">实付金额</text>
<text class="total-price">¥{{ order.payAmount }}</text>
@@ -340,6 +348,10 @@ async function submitReject() {
.discount { color: #52c41a; }
.service-fee { color: #faad14; }
.merchant-income { color: #1890ff; font-weight: 600; }
.total-row {
padding-top: 20rpx;
border-top: 2rpx solid #eee;