index.vue 454 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="margAll">
  3. <view class="fontSize13 fontWeight marginBottom40">
  4. 心灵照相机用户注册协议
  5. </view>
  6. <view class="xie_y">
  7. {{xieYs}}
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import {
  13. xieY
  14. } from "@/utils/Profile.js"
  15. export default {
  16. data(){
  17. return {
  18. xieYs: "",
  19. }
  20. },
  21. onShow() {
  22. this.xieYs = xieY
  23. },
  24. }
  25. </script>
  26. <style scoped>
  27. .xie_y{
  28. overflow-y: scroll;
  29. font-size: 12px;
  30. }
  31. </style>