mimi.vue 877 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view style="line-height: 26px;padding: 32upx;" class="home1">
  3. <!-- <view v-html="tit"> </view> -->
  4. <view style="font-size: 28upx;" v-html="content"></view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. tit: '',
  12. content: ''
  13. }
  14. },
  15. onLoad() {
  16. // this.getGuize();
  17. // 隐私政策
  18. this.$Request.getT('/app/common/type/237').then(res => { //用户完成成功
  19. if (res.code == 0) {
  20. if (res.data && res.data.value) {
  21. this.content = res.data.value;
  22. }
  23. }
  24. })
  25. },
  26. methods: {
  27. getGuize() {
  28. this.$Request.getT('/app/userinfo/privacyPolicy').then(res => {
  29. if (res.code == 0) {
  30. this.content = res.data.value;
  31. // this.tit = res.data.min
  32. }
  33. });
  34. }
  35. }
  36. }
  37. </script>
  38. <style>
  39. page {
  40. /* background: #1c1b20; */
  41. }
  42. </style>