var plan = [{
arr1: [{
title: "a",
value: 1
},
{
title: "b",
value: 2
},
{
title: "c",
value: 3
}
],
},
{
arr1: [{
title: "a",
value: 1
},
{
title: "b",
value: 2
}
]
},
{
arr1: [{
title: "a",
value: 1
},
{
title: "c",
value: 3
}
]
},
{
arr1: [{
title: "d",
value: 4
},
{
title: "c",
value: 3
}
]
}
]
//期望:
newArr = [
{title:'a',sum:3},
{title:'b',sum:4},
{title:'c',sum:9},
{title:'d',sum:4},
]