Files
crypto_monitor/lib/options/templates/options_settings_transfer.html
T

40 lines
2.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="options-transfer-compact">
<div class="options-transfer-block">
<div class="options-transfer-head">主账户内</div>
<div class="options-transfer-line">
<div class="opt-set-chip-group" id="opt-set-int-dir" role="group" aria-label="划转方向">
<button type="button" class="opt-set-chip active" data-from="funding" data-to="trading">资金→交易</button>
<button type="button" class="opt-set-chip" data-from="trading" data-to="funding">交易→资金</button>
</div>
<div class="opt-set-chip-group" id="opt-set-int-ccy" role="group" aria-label="币种">
<button type="button" class="opt-set-chip active" data-ccy="USDC">USDC</button>
<button type="button" class="opt-set-chip" data-ccy="USDT">USDT</button>
</div>
<input type="number" id="opt-set-int-amount" class="opt-set-amount" min="0.01" step="0.01" placeholder="数量">
<button type="button" class="btn-primary btn-sm" id="opt-set-int-btn">划转</button>
</div>
<div id="opt-set-int-msg" class="options-settings-msg muted"></div>
</div>
<div class="options-transfer-block">
<div class="options-transfer-head">
主子账户
<span class="muted">{{ instance_settings.options_sub_account or '未配置' }}</span>
</div>
<div class="options-transfer-line">
<div class="opt-set-chip-group" id="opt-set-cross-dir" role="group" aria-label="主子方向">
<button type="button" class="opt-set-chip active" data-dir="sub_to_main">子→主</button>
<button type="button" class="opt-set-chip" data-dir="main_to_sub">主→子</button>
</div>
<div class="opt-set-chip-group" id="opt-set-cross-ccy" role="group" aria-label="币种">
<button type="button" class="opt-set-chip active" data-ccy="USDT">USDT</button>
<button type="button" class="opt-set-chip" data-ccy="USDC">USDC</button>
</div>
<span class="options-transfer-acct">资金↔资金</span>
<input type="number" id="opt-set-cross-amount" class="opt-set-amount" min="0.01" step="0.01" placeholder="数量">
<button type="button" class="btn-primary btn-sm" id="opt-set-cross-btn">划转</button>
</div>
<div id="opt-set-cross-msg" class="options-settings-msg muted"></div>
</div>
</div>