keys.wxml 1.2 KB

1234567891011121314151617181920212223242526
  1. <background background="{{background}}"></background>
  2. <view class="font-18" style="opacity:{{0.85}}">
  3. <view class="cu-bar bg-white solid-bottom margin-top">
  4. <view class="action">
  5. <text class="cuIcon-title text-orange "></text> 公钥
  6. </view>
  7. </view>
  8. <view class="cu-form-group">
  9. <textarea name="note" id="note" maxlength="-1" readonly bindinput="textareaAInput" placeholder="公钥" bindinput="inputAction" data-id="public_key" value="{{publicKey}}"></textarea>
  10. </view>
  11. <view class="cu-bar bg-white solid-bottom margin-top">
  12. <view class="action">
  13. <text class="cuIcon-title text-orange "></text> 私钥
  14. </view>
  15. </view>
  16. <view class="cu-form-group">
  17. <textarea name="note" id="note" maxlength="-1" disabled="{{modalName!=null}}" bindinput="textareaAInput" placeholder="私钥" bindinput="inputAction" data-id="private_key" value="{{privateKey}}"></textarea>
  18. </view>
  19. <view class="padding flex flex-wrap justify-between align-center margin-top">
  20. <button class="cu-btn bg-red round justify-middle" bindtap='savePrivateKey'>保存私钥到本地</button>
  21. </view>
  22. </view>
  23. <view class="margin-top margin-20 font-18 red">
  24. 请妥善保存您的私钥,一旦私钥丢失,所有密码将无法解密。
  25. </view>