fix: 总收益bug

This commit is contained in:
chaosBreaking
2019-09-08 23:05:39 +08:00
parent 533aea4331
commit 2410811b97

View File

@@ -235,7 +235,7 @@ module.exports = {
basic: { basic: {
activeFund, activeFund,
revenueLastday, revenueLastday,
revenueAll: fund.fundSum || 0 revenueAll: fund.asset && fund.asset['vic']
} }
} }
}); });
@@ -257,7 +257,7 @@ module.exports = {
basic: { basic: {
activeFund, activeFund,
revenueLastday, revenueLastday,
revenueAll: newFund.fundSum revenueAll: newFund.asset['vic']
} }
} }
}); });