kpsm.vue 613 B

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