<% var toFixed, len, yesTotalIncome = parseFloat(obj.yesterdayTotalIncome); if(yesTotalIncome){ toFixed = yesTotalIncome.toFixed(2); len = toFixed.length; %>
昨日总收益(元) <%=toFixed%>
<%}else{%>
昨日总收益(元) 暂无收益
<%}%>
<%if(yesTotalIncome && obj.prdIncomeList.length > 0){%>
<%_.each(obj.prdIncomeList, function(item, id){%> <%})%>
名称 资产 昨日
收益
收益率
(预期)
<%=item.prdName ? item.prdName : '未知'%> <%=utils.string.numberFormat(item.prdAmt, 2, '.', '')%> <%=utils.string.numberFormat(item.yesterdayIncome, 2, '.', '')%> <%=utils.string.numberFormat(item.planRate)%>%
<%}%>