总资金
¥{{ formatNumber(dashboard.total_funds) }}
库存车辆价值
¥{{ formatNumber(dashboard.total_car_value) }}
可用余额
¥{{ formatNumber(dashboard.available_funds) }}
库存车辆数
{{ dashboard.cars ? dashboard.cars.length : 0 }} 辆
账户余额
| 账户名称 | 类型 | 当前余额 |
|---|---|---|
| {{ acc.name }} | {{ acc.type }} | ¥{{ formatNumber(acc.current_balance) }} |
库存车辆
| 车辆名称 | 收购价格 | 状态 |
|---|---|---|
| {{ car.name }} | ¥{{ formatNumber(car.purchase_price) }} | 库存 |
最近交易
| 交易编号 | 类型 | 方向 | 金额 | 对方 | 时间 |
|---|---|---|---|---|---|
| {{ tx.transaction_no }} | {{ tx.type }} | {{ tx.direction==='IN'?'收入':'支出'}} | {{ tx.direction==='IN'?'+':'-'}}¥{{ formatNumber(tx.total_amount) }} | {{ tx.counterparty || '-' }} | {{ formatDateTime(tx.created_at) }} |
车辆管理
| 车辆名称 | 收购价格 | 入库日期 | 状态 | 备注 | 操作 |
|---|---|---|---|---|---|
| {{ car.name }} | ¥{{ formatNumber(car.purchase_price) }} | {{ formatDate(car.purchase_date) }} | {{ car.status==='IN_STOCK'?'库存':'已出库'}} | {{ car.remark || '-' }} |
账户管理
| 账户名称 | 类型 | 期初余额 | 当前余额 |
|---|---|---|---|
| {{ acc.name }} | {{ acc.type }} | ¥{{ formatNumber(acc.initial_balance) }} | ¥{{ formatNumber(acc.current_balance) }} |
交易记录
| 交易编号 | 类型 | 方向 | 金额 | 对方 | 时间 |
|---|---|---|---|---|---|
| {{ tx.transaction_no }} | {{ tx.type }} | {{ tx.direction==='IN'?'收入':'支出'}} | {{ tx.direction==='IN'?'+':'-'}}¥{{ formatNumber(tx.total_amount) }} | {{ tx.counterparty || '-' }} | {{ formatDateTime(tx.created_at) }} |