| 股票 | 数量 | 成本 | 现价 | 盈亏 |
|---|---|---|---|---|
| {{ pos.name }} {{ pos.code }} |
{{ pos.quantity }} | {{ pos.cost.toFixed(2) }} | {{ pos.current.toFixed(2) }} | {{ pos.pnl >= 0 ? '+' : '' }}{{ formatMoney(pos.pnl) }} |
| 股票 | 现价 | 涨跌 |
|---|---|---|
| {{ getStockName(code) }} {{ code }} |
{{ price.latest.toFixed(2) }} | {{ price.changeRatio >= 0 ? '+' : '' }}{{ price.changeRatio.toFixed(2) }}% |