|
@@ -149,7 +149,12 @@
|
|
{{ scope.row.price | numToFixed }}
|
|
{{ scope.row.price | numToFixed }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column align="right" label="实付金额" prop="payAmount" min-width="100" sortable show-overflow-tooltip>
|
|
|
|
|
|
+ <el-table-column align="right" label="订单金额" prop="totalAmount" min-width="110" sortable show-overflow-tooltip>
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ {{ scope.row.totalAmount | numToFixed }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="right" label="实付金额" prop="payAmount" min-width="110" sortable show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.payAmount | numToFixed }}
|
|
{{ scope.row.payAmount | numToFixed }}
|
|
</template>
|
|
</template>
|
|
@@ -393,7 +398,7 @@ export default {
|
|
getList(params).then((res) => {
|
|
getList(params).then((res) => {
|
|
res.data.records.forEach(item => {
|
|
res.data.records.forEach(item => {
|
|
item.sums1 = ['qty', 'directTransferQty', 'hasSendQty', 'refundableQty'];
|
|
item.sums1 = ['qty', 'directTransferQty', 'hasSendQty', 'refundableQty'];
|
|
- item.sums2 = ['price', 'payAmount', 'rebateAmount', 'payRebateAmount', 'totalDiscAmount'];
|
|
|
|
|
|
+ item.sums2 = ['price', 'totalAmount', 'payAmount', 'rebateAmount', 'payRebateAmount', 'totalDiscAmount'];
|
|
})
|
|
})
|
|
this.dataList = res.data.records;
|
|
this.dataList = res.data.records;
|
|
this.listTotal = res.data.total;
|
|
this.listTotal = res.data.total;
|