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 a = 0 let vm = this
for (let i in this.prj_lists) { let sumL = []
let val = i.cf_lists.map(j => { for (let i of this.prj_lists) {
// a = a + parseFloat(j.pay) i.cf_lists.forEach(j => {
// console.log(a) sumL.push(j.pay)
// return j.pay
// return j
console.log(j)
}) })
console.log(val) let a = 0
let newSum = sumL.filter(item => {
return item !== ''
})
let notNaN = newSum.filter(item => {
return !isNaN(item)
})
if (notNaN.length !== 0) {
notNaN.forEach(i => {
a = a + parseFloat(i)
vm.money = a
})
} 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