Initial commit
Made-with: Cursor
This commit is contained in:
15
srde/miniprogram/pages/profile/profile.wxml
Normal file
15
srde/miniprogram/pages/profile/profile.wxml
Normal 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>
|
||||
Reference in New Issue
Block a user