123456789101112131415161718192021222324252627 |
- <background background="{{background}}"></background>
- <view class="font-18" style="opacity:{{0.85}}">
- <view class="cu-bar bg-white solid-bottom margin-top">
- <view class="action">
- <text class="cuIcon-title text-orange "></text>您的公钥
- </view>
- </view>
- <view class="cu-form-group">
- <textarea name="note" id="note" maxlength="-1" readonly bindinput="textareaAInput" placeholder="公钥" bindinput="inputAction" data-id="publicKey" value="{{publicKey}}" readonly='true'></textarea>
- </view>
- <view class="cu-bar bg-white solid-bottom margin-top">
- <view class="action">
- <text class="cuIcon-title text-orange "></text> 私钥
- </view>
- </view>
- <view class="cu-form-group">
- <textarea name="note" id="note" maxlength="-1" disabled="{{modalName!=null}}" bindinput="textareaAInput" placeholder="请输入您保存的私钥" bindinput="inputAction" data-id="privateKey" value="{{privateKey}}"></textarea>
- </view>
- <view class="padding flex flex-wrap justify-between align-center margin-top">
- <button class="cu-btn bg-yellow round justify-middle" bindtap='resetPrivateKey'>重置公私钥</button>
- <button class="cu-btn bg-red round justify-middle" bindtap='verifyPrivateKey'>校验私钥</button>
- </view>
- </view>
- <view class="margin-top margin-20 font-18 red">
- 如果您的私钥丢失,请重置您的公私钥,一旦重置,密码将因为无法解密全部丢失。。
- </view>
|