|
@@ -50,10 +50,13 @@ export default (props) => {
|
50
|
50
|
if (!dataSource[0] && !dataSource[1]) return;
|
51
|
51
|
|
52
|
52
|
if (isMixed) {
|
|
53
|
+ // console.log('------dataSource[0]------>', dataSource[0])
|
|
54
|
+ // console.log('------dataSource[1]------>', dataSource[1])
|
53
|
55
|
//
|
54
|
56
|
const bj = {
|
55
|
57
|
summary: {
|
56
|
58
|
money: dataSource[0].bj.summary.money + dataSource[1].bj.summary.money,
|
|
59
|
+ moneyOfFirstMonth: dataSource[0].bj.summary.moneyOfFirstMonth + dataSource[1].bj.summary.moneyOfFirstMonth,
|
57
|
60
|
totalRate: dataSource[0].bj.summary.totalRate + dataSource[1].bj.summary.totalRate,
|
58
|
61
|
totalMoney: dataSource[0].bj.summary.totalMoney + dataSource[1].bj.summary.totalMoney,
|
59
|
62
|
},
|
|
@@ -62,6 +65,7 @@ export default (props) => {
|
62
|
65
|
const bx = {
|
63
|
66
|
summary: {
|
64
|
67
|
money: dataSource[0].bx.summary.money + dataSource[1].bx.summary.money,
|
|
68
|
+ moneyOfFirstMonth: dataSource[0].bx.summary.moneyOfFirstMonth + dataSource[1].bx.summary.moneyOfFirstMonth,
|
65
|
69
|
totalRate: dataSource[0].bx.summary.totalRate + dataSource[1].bx.summary.totalRate,
|
66
|
70
|
totalMoney: dataSource[0].bx.summary.totalMoney + dataSource[1].bx.summary.totalMoney,
|
67
|
71
|
},
|