paotuixieyi.vue 777 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. methods: {
  19. getGuize() {
  20. this.$Request.getT('/app/common/type/308').then(res => {
  21. if (res.code == 0) {
  22. if (res.data && res.data.value) {
  23. this.content = res.data.value;
  24. }
  25. }
  26. });
  27. // this.$Request.getT('/app/userinfo/userAgreement').then(res => {
  28. // if (res.code == 0) {
  29. // // this.tit = res.data.min
  30. // }
  31. // });
  32. }
  33. }
  34. }
  35. </script>
  36. <style>
  37. page {
  38. background: #FFFFFF;
  39. }
  40. </style>