sijixieyi.vue 597 B

123456789101112131415161718192021222324252627282930313233343536
  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/247').then(res => {
  21. if (res.code == 0) {
  22. this.content = res.data.value;
  23. // this.tit = res.data.min
  24. }
  25. });
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. page {
  32. background: #FFFFFF;
  33. }
  34. </style>