|
@@ -68,9 +68,21 @@
|
|
|
<el-table-column label="商品sku" prop="product_sku"></el-table-column>
|
|
|
<el-table-column label="商品附加" prop="product_attach"></el-table-column>
|
|
|
<el-table-column label="数量" prop="product_num"></el-table-column>
|
|
|
- <el-table-column label="商品单价(元)" prop="product_unit_price"></el-table-column>
|
|
|
- <el-table-column label="商品总价格(元)" prop="product_price"></el-table-column>
|
|
|
- <el-table-column label="退款金额(元)" prop="product_refund_price"></el-table-column>
|
|
|
+ <el-table-column label="商品单价(元)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <p>{{ scope.row.product_unit_price | fen2Yuan }}</p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="商品总价格(元)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <p>{{ scope.row.product_price | fen2Yuan }}</p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="退款金额(元)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <p>{{ scope.row.product_refund_price | fen2Yuan }}</p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="商品状态" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['待支付', '已支付', '全部退款', '部分退款', '已取消'][scope.row.product_status] }}</p>
|
|
@@ -90,9 +102,9 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="4" class="table-cell">¥{{ order.order_price | fen2Yuan }}</el-col>
|
|
|
- <el-col :span="5" class="table-cell">-¥{{ order.order_refund_price }}</el-col>
|
|
|
- <el-col :span="5" class="table-cell">-¥{{ order.order_coupon_price }}</el-col>
|
|
|
- <el-col :span="5" class="table-cell">¥{{ order.order_prepare_price }}</el-col>
|
|
|
+ <el-col :span="5" class="table-cell">-¥{{ order.order_refund_price | fen2Yuan }}</el-col>
|
|
|
+ <el-col :span="5" class="table-cell">-¥{{ order.order_coupon_price | fen2Yuan }}</el-col>
|
|
|
+ <el-col :span="5" class="table-cell">¥{{ order.order_prepare_price | fen2Yuan }}</el-col>
|
|
|
<el-col :span="5" class="table-cell">¥{{ order.order_pay_price | fen2Yuan }}</el-col>
|
|
|
</el-row>
|
|
|
</div>
|