投资参数
{{ formatNumber(form.principal) }} 元
{{ form.rate }}%
{{ form.years }} 年
{{ formatNumber(form.annualAddition) }} 元/年
计算复利结果
投资结果概览
到期总金额
¥ {{ formatNumber(totalAmount) }}
总投入本金
¥ {{ formatNumber(totalPrincipal) }}
赚取的利息
¥ {{ formatNumber(totalInterest) }}
投资回报率
{{ yieldRate.toFixed(2) }}%
每年投资明细
年份 年初本金 (元) 当年利息 (元) 利息增长率 追加投资 (元) 年末总金额 (元) 累计投入 (元) 累计利息 (元)
{{ item.year }} {{ formatCurrency(item.startPrincipal) }} {{ formatCurrency(item.yearInterest) }} {{ ((item.yearInterest / yearlyData[index-1].yearInterest - 1) * 100).toFixed(2) }}% - {{ formatCurrency(item.addition) }} {{ formatCurrency(item.endPrincipal) }} {{ formatCurrency(item.accumulatedPrincipal) }} {{ formatCurrency(item.accumulatedInterest) }}