|
@@ -286,12 +286,12 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="退货数量" prop="refundNum" min-width="120"></el-table-column>
|
|
|
- <el-table-column align="center" label="退货单价" prop="" min-width="120">
|
|
|
+ <el-table-column align="center" label="退货单价" prop="refundAmount" min-width="120"></el-table-column>
|
|
|
+ <el-table-column align="center" label="退货金额" prop="" min-width="120">
|
|
|
<template slot-scope="scope">
|
|
|
- {{(scope.row.refundAmount / scope.row.refundNum) || 0}}
|
|
|
+ {{(scope.row.refundAmount * scope.row.refundNum) * 100 / 100}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" label="退货金额" prop="refundAmount" min-width="120"></el-table-column>
|
|
|
|
|
|
<el-table-column align="center" label="已退数量" prop="retiredNum" min-width="120"></el-table-column>
|
|
|
<el-table-column align="center" label="已退单价" min-width="120">
|