Commit 5d7386e3 authored by liudong1993's avatar liudong1993

1

parent 6eed361f
...@@ -612,6 +612,11 @@ ...@@ -612,6 +612,11 @@
<span class="fz15 fbold">{{ scope.row.Refund ? scope.row.Refund : "-" }}</span> <span class="fz15 fbold">{{ scope.row.Refund ? scope.row.Refund : "-" }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="平台在途" min-width="100">
<template slot-scope="scope">
<span class="fz15 fbold">{{ scope.row.PlatformMoney ? scope.row.PlatformMoney : "-" }}</span>
</template>
</el-table-column>
<el-table-column label="待收" min-width="100"> <el-table-column label="待收" min-width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="fz15 fbold" <span class="fz15 fbold"
......
...@@ -440,10 +440,11 @@ export default { ...@@ -440,10 +440,11 @@ export default {
Income: item.Income, Income: item.Income,
CostMoney: item.CostMoney, CostMoney: item.CostMoney,
PlatformTax: item.PlatformTax, PlatformTax: item.PlatformTax,
Refund: item.Refund Refund: item.Refund,
PlatformMoney: item.PlatformMoney
} }
let DaiShou let DaiShou
DaiShou = Number(item.Money-item.Income-item.PlatformTax+item.Refund) DaiShou = Number(item.Money-item.Income-item.PlatformTax-item.PlatformMoney+item.Refund)
item.DaiShou = DaiShou.toFixed(2)==='-0.00'?'0.00':DaiShou.toFixed(2) item.DaiShou = DaiShou.toFixed(2)==='-0.00'?'0.00':DaiShou.toFixed(2)
item.list.push(datas) item.list.push(datas)
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment