Initial commit

Made-with: Cursor
This commit is contained in:
Daniel
2026-02-28 18:39:00 +08:00
commit a94bd44c3a
49 changed files with 917 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<view class="page">
<view class="card">
<view class="label">当前状态</view>
<status-badge status="{{account.status}}" />
<view class="lock-until" wx:if="{{account.trading_locked_until}}">锁仓至 {{account.trading_locked_until}}</view>
</view>
<view class="card">
<view class="label">修改总资金</view>
<input class="input" type="digit" value="{{capital}}" placeholder="输入新总资金" bindinput="onCapitalInput" />
<button class="btn" bindtap="onSaveCapital" loading="{{saving}}">保存</button>
</view>
<view class="card danger">
<button class="btn-reset" bindtap="onReset" loading="{{resetting}}">重置账户(危险操作)</button>
</view>
</view>