本月收入
¥{{ monthlyIncome.toFixed(2) }}
本月支出
¥{{ monthlyExpense.toFixed(2) }}
本月结余
¥{{ monthlyBalance.toFixed(2) }}
最近记录
| 日期 | 类型 | 金额 | 分类 | 描述 |
|---|---|---|---|---|
| {{ record.date }} | {{ record.type === 'income' ? '收入' : '支出' }} | ¥{{ record.amount.toFixed(2) }} | {{ getCategoryName(record.category) }} | {{ record.description || '-' }} |
添加收入
添加支出
交易记录
| 日期 | 类型 | 金额 | 分类 | 账户 | 描述 | 操作 |
|---|---|---|---|---|---|---|
| {{ record.date }} | {{ record.type === 'income' ? '收入' : '支出' }} | ¥{{ record.amount.toFixed(2) }} | {{ getCategoryName(record.category) }} | {{ getAccountName(record.account) }} | {{ record.description || '-' }} |
分类管理
收入分类
{{ cat.name }}
支出分类
{{ cat.name }}
账户管理
{{ acc.name }}{{ acc.type === 'asset' ? '资产' : '负债' }}
余额: ¥{{ (accountBalances[acc.id] || 0).toFixed(2) }}