2790b92378
- strategy-positions 附加 holding_id + avgPrice/lastTradePrice(无关联默认成本价) - trades/by-holding 端点(按 holding 查委托汇总) - StrategyTab 持仓行展开(懒加载 + 内嵌汇总表,含交易日/时间列) - 神之一手 tab 激活时隐藏 AI 对话输入框(纯 CSS :has() 方案)
13 lines
471 B
React
13 lines
471 B
React
/**
|
||
* 占位 tab 组件(迭代 02 设置 tab 化扩展)
|
||
* 交易记录 / 关注列表 当前为空占位,功能后续迭代实现
|
||
*/
|
||
|
||
export function PlaceholderTab({ title }) {
|
||
return (
|
||
<div className="odl-root" style={{ padding: 40, textAlign: 'center', fontFamily: 'system-ui', color: '#999' }}>
|
||
<div style={{ fontSize: 16, marginBottom: 8 }}>{title}</div>
|
||
<div style={{ fontSize: 13 }}>功能开发中,敬请期待</div>
|
||
</div>
|
||
);
|
||
} |