运维与数据管理
{{ adminStatusMessage }}
{{ adminPanelText }}
📊
市场状态
{{ marketStatus.status_label }}
⚠️
股价验证报警
{{ alert.stock_code }}: {{ alert.message }}
暂无持仓数据,请添加交易记录
全部篮子总和
汇总当前普通篮子的资产、现金、持仓市值与盈亏;观察篮子不计入总和
总资产
¥{{ formatNumber(allBasketsSummary.total_assets) }}
现金
¥{{ formatNumber(allBasketsSummary.cash_balance) }}
市值
¥{{ formatNumber(allBasketsSummary.total_market_value) }}
已实现
{{ allBasketsSummary.realized_profit>=0?'+':'-' }}¥{{ formatNumber(allBasketsSummary.realized_profit) }}
浮动
{{ allBasketsSummary.unrealized_profit>=0?'+':'-' }}¥{{ formatNumber(allBasketsSummary.unrealized_profit) }}
总收益 / 回报率
{{ allBasketsSummary.total_profit>=0?'+':'-' }}¥{{ formatNumber(allBasketsSummary.total_profit) }} ({{ allBasketsSummary.total_profit_percent>=0?'+':'' }}{{ parseFloat(allBasketsSummary.total_profit_percent).toFixed(2) }}%)
持仓
{{ allBasketsSummary.holdings_count }} 只
📁 {{ basket.basket_name }}
观察
{{ basket.basket_description }}
总资产
¥{{ formatNumber(basket.summary.total_assets) }}
现金
¥{{ formatNumber(basket.summary.cash_balance) }}
市值
¥{{ formatNumber(basket.summary.total_market_value) }}
已实现
{{ basket.summary.realized_profit>=0?'+':'-' }}¥{{ formatNumber(basket.summary.realized_profit) }}
浮动
{{ basket.summary.unrealized_profit>=0?'+':'-' }}¥{{ formatNumber(basket.summary.unrealized_profit) }}
总收益 / 回报率
{{ basket.summary.total_profit>=0?'+':'-' }}¥{{ formatNumber(basket.summary.total_profit) }} ({{ basket.summary.total_profit_percent>=0?'+':'' }}{{ parseFloat(basket.summary.total_profit_percent).toFixed(2) }}%)
持仓
{{ basket.summary.holdings_count }} 只
表格可左右滑动查看完整数据
| 股票代码 | 股票名称 | 持仓数量 | 成本价 | 收盘价 | 市值 | 盈亏 | 回报率 | 操作 |
|---|---|---|---|---|---|---|---|---|
| 暂无持仓 | ||||||||
| {{ item.stock_code }} | {{ item.stock_name || '-' }} | {{ formatShares(item.current_quantity) }} | ¥{{ item.current_cost_price || '-' }} | ¥{{ item.current_price || '-' }} ✓ | ¥{{ formatNumber(item.market_value) }} | {{ item.unrealized_profit>=0?'+':'-' }}¥{{ formatNumber(item.unrealized_profit) }} | {{ formatReturnRate(item) }} | |
📊
已实现收益
共 {{ historyHoldings.total }} 条收益记录
已实现合计
{{ historyHoldings.summary.total_profit>=0?'+':'-' }}¥{{ formatNumber(historyHoldings.summary.total_profit) }}
({{ historyHoldings.summary.total_profit_percent>=0?'+':'' }}{{ parseFloat(historyHoldings.summary.total_profit_percent).toFixed(2) }}%)
{{ showHistoryDetail ? '▲ 收起' : '▼ 展开查看详情' }}
表格可左右滑动查看完整数据
| 篮子 | 代码 | 名称 | 类型 | 持仓周期 | 持仓天数 | 总成本 | 总收入 | 盈亏 | 回报率 | 操作 |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ item.basket_name || '-' }} | {{ item.stock_code }} | {{ item.stock_name }} | {{ item.realized_type_label || (item.realized_type==='partial' ? '部分平仓' : '已清仓') }} | {{ item.first_buy_date }} ~ {{ item.last_operation_date }} | {{ item.holding_days }} 天 | ¥{{ formatNumber(item.total_cost) }} | ¥{{ formatNumber(item.total_revenue) }} | {{ item.total_profit>=0?'+':'-' }}¥{{ formatNumber(item.total_profit) }} | {{ item.profit_percent>=0?'+':'' }}{{ parseFloat(item.profit_percent||0).toFixed(2) }}% |