1
0

privacyPopup.wxml 1.1 KB

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