Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

agreement.vue 927B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="word-inp">
  3. <u-modal v-model="show" title='用户隐私保护提示' @confirm="confirm" confirm-text='同意'>
  4. <view class="word-inp-content">
  5. 使用前请仔细阅读<text @click="handleCha"
  6. style="color: #2092ed;">《ETC用户信息收集隐私保护协议》</text>。当您点击同意并开始使用产品服务时,即表示你已理解并同意该条款内容,请点击“同意”开始使用
  7. </view>
  8. </u-modal>
  9. </view>
  10. </template>
  11. <script setup>
  12. import {
  13. ref
  14. } from 'vue'
  15. const show = ref(false)
  16. const confirm = () => {
  17. show.value = false
  18. }
  19. const handleCha = () => {
  20. // isShow.value = true
  21. window.open('https://file.etcjz.cn/file/mini/static/img//html/clause230928.html', '_self');
  22. }
  23. </script>
  24. <style scoped>
  25. .word-inp-content {
  26. font-size: 28rpx;
  27. padding: 30rpx;
  28. line-height: 40rpx;
  29. }
  30. .slot-content {
  31. height: 70vh;
  32. width: 100%;
  33. }
  34. </style>