|
@@ -445,12 +445,12 @@
|
|
<el-table-column
|
|
<el-table-column
|
|
align="right"
|
|
align="right"
|
|
label="金额"
|
|
label="金额"
|
|
- prop="totalAmount"
|
|
|
|
|
|
+ prop="totalPrice"
|
|
min-width="160"
|
|
min-width="160"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
>
|
|
>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- {{ scope.row.totalAmount | numToFixed}}
|
|
|
|
|
|
+ {{ scope.row.totalPrice | numToFixed}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
@@ -460,17 +460,7 @@
|
|
min-width="160"
|
|
min-width="160"
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
/>
|
|
/>
|
|
- <el-table-column
|
|
|
|
- align="right"
|
|
|
|
- label="押金金额"
|
|
|
|
- prop="depositAmount"
|
|
|
|
- min-width="160"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.depositAmount | numToFixed}}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
|
|
+
|
|
<el-table-column
|
|
<el-table-column
|
|
align="right"
|
|
align="right"
|
|
label="上交资料"
|
|
label="上交资料"
|
|
@@ -659,9 +649,10 @@ export default {
|
|
getList(params).then((res) => {
|
|
getList(params).then((res) => {
|
|
this.dataList = res.data.records
|
|
this.dataList = res.data.records
|
|
res.data.records.forEach((item) => {
|
|
res.data.records.forEach((item) => {
|
|
|
|
+ item.totalPrice = item.itemPrice * item.itemQty
|
|
// item.number = (item.qty*100 - item.directTransferQty*100 - item.retiredQty*100) / 100;
|
|
// item.number = (item.qty*100 - item.directTransferQty*100 - item.retiredQty*100) / 100;
|
|
item.sums1 = ['qty','hasSendQty','itemDataQty']
|
|
item.sums1 = ['qty','hasSendQty','itemDataQty']
|
|
- item.sums2 = ['itemDepositAmount', 'diffAmount', 'price','totalAmount','depositAmount']
|
|
|
|
|
|
+ item.sums2 = ['itemDepositAmount', 'diffAmount', 'price','totalAmount','depositAmount','totalPrice']
|
|
})
|
|
})
|
|
this.listLoading = false
|
|
this.listLoading = false
|
|
this.listTotal = res.data.total
|
|
this.listTotal = res.data.total
|