index.wxml 989 B

1234567891011
  1. <!--components/popup/index.wxml-->
  2. <view wx:if="{{innerShow}}" class="wx-popup" catchtouchmove="{{true}}" scroll-top="0" bind:tap="disPopUp">
  3. <view class="content" catch:tap="asd">
  4. <view class="title">用户隐私保护提示</view>
  5. <view class="text">感谢您使用本应用,您使用本应用的服务之前请仔细阅读并同意
  6. <text class="file-name" catch:tap="openPrivacyContract">《用户隐私保护》</text>,<text class="file-name" catch:tap="openUserXieyi">《用户协议》</text>。当您点击同意并开始使用产品服务时,即表示你已理解并同意该条款内容,该条款将对您产生法律约束力。如您拒绝,将无法使用相应服务。</view>
  7. <!-- <button open-type="getPhoneNumber" class="confirm" bindgetphonenumber="confirm">同意并继续</button> -->
  8. <button class="confirm" bind:tap="confirm">同意并继续</button>
  9. <button class="cancel" bind:tap="disPopUp">不同意</button>
  10. </view>
  11. </view>