agree.wxml 712 B

1234567891011121314151617
  1. <cu-custom isBack="{{true}}">
  2. <view slot="backText">返回</view>
  3. <view slot="content">电子合同</view>
  4. </cu-custom>
  5. <view wx:if="{{prevUrl}}">
  6. <image src="{{prevUrl}}" style="width:100%" mode="widthFix" bindtap="preview"></image>
  7. <button type="primary" bindtap="gotoSign">重新签名</button>
  8. </view>
  9. <view class="container" wx:else>
  10. <image src="https://yyq2.oss-cn-shanghai.aliyuncs.com/pdf/sign.jpg" mode="widthFix" style="width:100%" bindtap="preview">
  11. </image>
  12. <view style="padding:20rpx">
  13. <button wx:if="{{currentTime>0}}" type="info">{{currentTime}}秒后可以进入签名</button>
  14. <button wx:else type="primary" bindtap="gotoSign">点击进入签名</button>
  15. </view>
  16. </view>