Commit 89da0975 authored by youjie's avatar youjie

no message

parent 3011b1cd
...@@ -340,7 +340,7 @@ ...@@ -340,7 +340,7 @@
DueInMoney:item.DueInMoney, DueInMoney:item.DueInMoney,
...item ...item
} }
item.list.push(datas) item.list.push(JSON.parse(JSON.stringify(datas)))
}) })
this.total = res.data.data.count; this.total = res.data.data.count;
}else { }else {
......
...@@ -448,7 +448,7 @@ export default { ...@@ -448,7 +448,7 @@ export default {
let DaiShou let DaiShou
DaiShou = Number(item.Money-item.Income-item.PlatformTax-item.PlatformMoney+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(JSON.parse(JSON.stringify(datas)))
}) })
this.total = res.data.data.count; this.total = res.data.data.count;
} else { } else {
......
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