vipVereinbarung.vue 573 B

123456789101112131415161718192021222324252627282930313233343536
  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. tit: '',
  11. content: ''
  12. }
  13. },
  14. onLoad() {
  15. this.getGuize();
  16. },
  17. methods: {
  18. getGuize() {
  19. this.$Request.getT('/app/common/type/635').then(res => {
  20. if (res.code == 0) {
  21. if (res.data && res.data.value) {
  22. this.content = res.data.value;
  23. }
  24. }
  25. });
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. page {
  32. background: #FFFFFF;
  33. }
  34. </style>