mimi.vue 540 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view style="font-size: 14px;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/176').then(res =>{
  19. if(res.code === 0){
  20. this.content = res.data.value;
  21. }
  22. });
  23. }
  24. }
  25. }
  26. </script>
  27. <style>
  28. page {
  29. background: #FFFFFF;
  30. }
  31. </style>