Protocal.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="protocal-content">
  3. <view class="logs">
  4. <view class="and-home">
  5. <image src="/static/images/log2.png" mode="heightFix" class="img"></image>
  6. </view>
  7. <view class="log">
  8. <image src="/static/images/log1.png" mode="heightFix" class="img"></image>
  9. </view>
  10. </view>
  11. <view class="title">服务协议与隐私政策</view>
  12. <view class="content">
  13. <view class="pro">感谢您信任并使用Coffunity小程序,依据最新法律要求,我们更新了会员服务协议、隐私政策。请您仔细阅读《Coffunity会员服务协议》和《隐私
  14. 政策》,并确认了解我们对您的个人信息处理
  15. 原则。</view>
  16. <view class="pro">
  17. 如您同意 <text class="red">《Coffunity会员服务协议》</text>和<text class="red">《隐私政策》</text>,请点击“同意”后使用我们的产品和服务,我们
  18. 依法全力保护您的个人信息安全。
  19. </view>
  20. </view>
  21. <view class="btns">
  22. <view class="btn"><button class="btn-disagree">不同意</button></view>
  23. <view class="btn"><button class="btn-agree">(6)同意</button></view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. name:"Protocal",
  30. data() {
  31. return {
  32. };
  33. }
  34. }
  35. </script>
  36. <style lang="scss">
  37. @import './Protocal.scss'
  38. </style>