gywm.vue 487 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view>
  3. <view style="padding: 0 40upx;">
  4. <rich-text class="cont" :nodes="gywm"></rich-text>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. gywm:'',
  13. }
  14. },
  15. onLoad() {
  16. this.gywm = uni.getStorageSync("config").site.gywm;
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. .h1{
  24. font-size: 32upx;
  25. text-align: center;
  26. font-weight: bold;
  27. line-height: 52px;
  28. }
  29. .cont{
  30. font-size: 32upx;
  31. box-sizing: border-box;
  32. }
  33. </style>