d87081205d
顶栏新增系统设置;风控说明读取 .env;数据导出与资金划转迁入三张卡片;顶栏移除导出条与手动划转。 Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
940 B
HTML
16 lines
940 B
HTML
{# 三所统一顶栏:实时价 + 可选整点前开仓开关(划转已移至系统设置) #}
|
||
<div class="rule-tip instance-price-bar">
|
||
实时价格更新:<span id="price-last-updated">--</span>(北京时间 UTC+8)
|
||
</div>
|
||
{% if ui_open_guard_enabled %}
|
||
<div class="rule-tip" id="open-guard-bar" style="display:flex;align-items:center;gap:10px;flex-wrap:wrap">
|
||
<label style="display:flex;align-items:center;gap:6px;cursor:pointer;color:#cfd3ef">
|
||
<input type="checkbox" id="allow-open-before-reset" {% if not open_guard_enabled %}checked{% endif %}>
|
||
允许北京时间 {{ reset_hour }}:00 前开仓(斐波成交登记、人工下单)
|
||
</label>
|
||
<span id="open-guard-status" style="color:#8892b0;font-size:.75rem">
|
||
{% if open_guard_enabled %}已限制:{{ reset_hour }}:00 前不可开仓{% else %}已放开:{{ reset_hour }}:00 前允许开仓{% endif %}
|
||
</span>
|
||
</div>
|
||
{% endif %}
|