Commit 2f901a02 authored by linxin's avatar linxin

计算总和

parent 94863c17
...@@ -108,29 +108,29 @@ export default { ...@@ -108,29 +108,29 @@ export default {
watch: { watch: {
'prj_lists': { 'prj_lists': {
handler (newName, oldName) { handler (newName, oldName) {
let vm = this
let sumL = []
for (let i of this.prj_lists) {
i.cf_lists.forEach(j => {
sumL.push(j.pay)
})
let a = 0 let a = 0
for (let i in this.prj_lists) { let newSum = sumL.filter(item => {
let val = i.cf_lists.map(j => { return item !== ''
// a = a + parseFloat(j.pay) })
// console.log(a) let notNaN = newSum.filter(item => {
// return j.pay return !isNaN(item)
// return j })
console.log(j) if (notNaN.length !== 0) {
notNaN.forEach(i => {
a = a + parseFloat(i)
vm.money = a
}) })
console.log(val) } else {
} vm.money = 0
// let sum = this.prj_lists.map(i => { }
// i.cf_lists.map(j => { }
// a = a + parseFloat(j.pay)
// console.log(a)
// return j.pay
// return j
// })
// })
// this.money = val
// console.log(sum)
}, },
immediate: true,
deep: true, deep: true,
}, },
......
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