|
@@ -62,7 +62,7 @@
|
|
|
<el-col :span="6"><b>订单金额:</b> ¥{{ order.payTotalFee | toThousandFloatFilter }}</el-col>
|
|
|
<el-col :span="6"><b>应收金额:</b> ¥{{ order.payableAmount | toThousandFloatFilter }}<span style="color:red;"> (账户余额抵扣:¥{{ order.balancePayFee | toThousandFloatFilter }})</span></el-col>
|
|
|
<el-col :span="6"><b>已收金额:</b>
|
|
|
- <template v-if="order.receiptStatus*1===1">¥0</template>
|
|
|
+ <template v-if="order.receiptStatus*1===1">¥0.00</template>
|
|
|
<template v-else>¥{{ receiptAmount | toThousandFloatFilter }}</template>
|
|
|
</el-col>
|
|
|
<el-col :span="6"><b>退款金额(已完成):</b> ¥{{ returnValue | toThousandFloatFilter }}
|
|
@@ -71,7 +71,7 @@
|
|
|
</el-row>
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
<el-col :span="6"><b>经理折扣:</b>
|
|
|
- <template v-if="order.discountFee<0">¥0</template>
|
|
|
+ <template v-if="order.discountFee<0">¥0.00</template>
|
|
|
<template v-else>
|
|
|
¥{{ order.discountFee>returnedPurchaseFee ? (order.discountFee - returnedPurchaseFee) : '0' }}
|
|
|
<span style="color:red;">({{ '原:¥' + order.discountFee + ',折扣取消:¥' + (order.discountFee>returnedPurchaseFee ? returnedPurchaseFee : order.discountFee) }})</span>
|
|
@@ -118,6 +118,7 @@
|
|
|
</el-col>
|
|
|
<el-col v-if="op.productID*1!==999" :span="5">
|
|
|
<div v-if="order.sendOutStatus*1 === 2 || order.sendOutStatus*1 === 3" class="op-item"><b>已发/已收:</b> {{ ((op.num ? op.num : 0) - (op.notOutStore ? op.notOutStore : 0)) + '/' + op.receivedNum }}</div>
|
|
|
+ <div v-if="['12','13','21','22','23','31','32','33','4','5'].indexOf(order.status)>=0" class="op-item"><b>退款(退货)中/已完成:</b> {{ op.returningNum }} / {{ op.returnedNum }}</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|