offXieyi.vue 584 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view style="line-height: 26px;padding: 32upx;" class="home1">
  3. <view style="font-size: 28upx;" v-html="content" ></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. content:''
  11. }
  12. },
  13. onLoad() {
  14. this.getGuize();
  15. },
  16. methods: {
  17. getGuize(){
  18. this.$Request.getT('/app/common/type/360').then(res => {
  19. if (res.code == 0) {
  20. this.content = res.data.value;
  21. // this.tit = res.data.min
  22. }
  23. });
  24. }
  25. }
  26. }
  27. </script>
  28. <style>
  29. page{
  30. background: #FFFFFF;
  31. }
  32. </style>