privacyPopup.wxml 1.1 KB

12345678910111213141516171819202122232425
  1. <view wx:if="{{innerShow}}" class="weui-half-screen-dialog" style="border-color:rgb(64, 247, 94); border-style:solid; border-width:3px; position: fixed; bottom:{{height}}px" >
  2. <view class="weui-half-screen-dialog__hd">
  3. <text class="weui-half-screen-dialog__title">{{title}}</text>
  4. </view>
  5. <view class="weui-half-screen-dialog__bd">
  6. <view class="weui-half-screen-dialog__tips">{{desc1}}</view>
  7. <view class="weui-half-screen-dialog__tips" style="color:blue" bindtap="openPrivacyContract">{{urlTitle}}</view>
  8. <view class="weui-half-screen-dialog__tips">{{desc2}}</view>
  9. </view>
  10. <view class="weui-half-screen-dialog__ft">
  11. <view class="weui-half-screen-dialog__btn-area">
  12. <button id="disagree-btn"
  13. type="default"
  14. class="weui-btn"
  15. bindtap="handleDisagree"
  16. >不同意</button>
  17. <button id="agree-btn"
  18. type="default"
  19. open-type="agreePrivacyAuthorization"
  20. class="weui-btn"
  21. bindagreeprivacyauthorization="handleAgree"
  22. >同意并继续</button>
  23. </view>
  24. </view>
  25. </view>