|
@@ -39,13 +39,20 @@
|
|
|
</span>
|
|
</span>
|
|
|
</el-descriptions-item>
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item label="退款金额" >
|
|
<el-descriptions-item label="退款金额" >
|
|
|
- <span v-if="afterSales!=null">
|
|
|
|
|
- {{afterSales.refundAmount}}
|
|
|
|
|
|
|
+ <span>
|
|
|
|
|
+<!-- {{order.totalPrice}}-->
|
|
|
|
|
+ ¥{{(order.totalPrice-order.discountMoney).toFixed(2)}}
|
|
|
|
|
+<!-- ¥{{(order.totalPrice-order.payPostage+order.discountMoney).toFixed(2)}}-->
|
|
|
|
|
+ </span>
|
|
|
|
|
+ </el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="优惠券" >
|
|
|
|
|
+ <span>
|
|
|
|
|
+ ¥{{order.discountMoney}}
|
|
|
</span>
|
|
</span>
|
|
|
</el-descriptions-item>
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item label="运费" >
|
|
<el-descriptions-item label="运费" >
|
|
|
<span v-if="order!=null">
|
|
<span v-if="order!=null">
|
|
|
- {{order.payPostage}}
|
|
|
|
|
|
|
+ ¥{{order.payPostage}}
|
|
|
</span>
|
|
</span>
|
|
|
</el-descriptions-item>
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item label="申请类型" >
|
|
<el-descriptions-item label="申请类型" >
|
|
@@ -133,6 +140,16 @@
|
|
|
|
|
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column label="优惠券" width="300" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <p>¥{{order.discountMoney}}</p>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="运费" width="300" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <p>¥{{order.payPostage}}</p>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="属性" width="240" align="center">
|
|
<el-table-column label="属性" width="240" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
{{JSON.parse(scope.row.jsonInfo).sku}}
|
|
{{JSON.parse(scope.row.jsonInfo).sku}}
|
|
@@ -145,13 +162,15 @@
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column label="小计" align="center">
|
|
<el-table-column label="小计" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- ¥{{JSON.parse(scope.row.jsonInfo).num*JSON.parse(scope.row.jsonInfo).price}}
|
|
|
|
|
|
|
+ ¥ {{(order.totalPrice-order.discountMoney).toFixed(2)}}
|
|
|
|
|
+<!-- ¥{{(order.totalPrice-order.payPostage+order.discountMoney).toFixed(2)}}--><!--{{JSON.parse(scope.row.jsonInfo).num*JSON.parse(scope.row.jsonInfo).price}}-->
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
|
<div style="margin-top: 12px; text-align: right;" v-if="order">
|
|
<div style="margin-top: 12px; text-align: right;" v-if="order">
|
|
|
- <div>订单金额:¥{{ goodsTotal.toFixed(2) }}</div>
|
|
|
|
|
|
|
+ <div>商品金额:¥{{ goodsTotal.toFixed(2) }}</div>
|
|
|
<div>运费金额:¥{{ (order.payPostage || 0).toFixed(2) }}</div>
|
|
<div>运费金额:¥{{ (order.payPostage || 0).toFixed(2) }}</div>
|
|
|
|
|
+ <div>优惠券金额:¥{{ order.discountMoney }}</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div style="margin-top: 20px">
|
|
<div style="margin-top: 20px">
|
|
|
<span class="font-small">操作信息</span>
|
|
<span class="font-small">操作信息</span>
|