privacyPopup.wxml 961 B

123456789101112131415161718
  1. <view class="mask" wx:if="{{innerShow}}">
  2. <view class="weui-half-screen-dialog" style=" position: fixed; bottom:{{height}}px">
  3. <view class="weui-half-screen-dialog__hd">
  4. <text class="weui-half-screen-dialog__title">{{title}}</text>
  5. </view>
  6. <view class="weui-half-screen-dialog__bd">
  7. <view class="weui-half-screen-dialog__tips">{{desc1}}</view>
  8. <view class="weui-half-screen-dialog__tips">{{desc2}}</view>
  9. <view class="weui-half-screen-dialog__tips " style="color:#AFDBF6" bindtap="openPrivacyContract">{{urlTitle}}</view>
  10. </view>
  11. <view class="weui-half-screen-dialog__ft">
  12. <view class="weui-half-screen-dialog__btn-area">
  13. <button id="agree-btn" type="warn" open-type="agreePrivacyAuthorization" class="weui-btn" bindagreeprivacyauthorization="handleAgree">同意并继续</button>
  14. <view class="disagreeBtn" bindtap="handleDisagree">不同意</view>
  15. </view>
  16. </view>
  17. </view>
  18. </view>