微信小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

19 lignes
937 B

  1. <!--pages/apply/index.wxml-->
  2. <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
  3. <image src="../../../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};" mode="widthFix" bindtap="back"></image>
  4. <text style="top:{{isIPX?'54px':'30px'}};">电子签名</text>
  5. </view>
  6. <view class="wrapper" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <view class="hand-left">
  8. <button catchtap="retDraw" class="del-btn">清除</button>
  9. <button catchtap="subCanvas" class="sub-btn">保存</button>
  10. </view>
  11. <view class="hand-center">
  12. <canvas class="hand-writing" wx:if="{{!isShow}}" disable-scroll="true" bindtouchstart="uploadScaleStart" bindtouchmove="uploadScaleMove" bindtouchend="uploadScaleEnd" canvas-id="handWriting">
  13. </canvas>
  14. <image mode="scaleToFill" class="hand-writing" wx:if="{{isShow}}" src="{{url}}"></image>
  15. </view>
  16. <view class="hand-right">
  17. <view class="hand-title">手写签名</view>
  18. </view>
  19. </view>