海南旅游项目 前端仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
612 B

4 years ago
  1. <template>
  2. <view class="lf-m-l-32 lf-m-r-32">
  3. <rich-text :nodes="content" v-if="$isRight(content)"></rich-text>
  4. <lf-nocontent v-else></lf-nocontent>
  5. <!-- 回到顶部 -->
  6. <u-back-top :scroll-top="pageScrollTop" :custom-style="{background: 'rgba(51, 51 51, 0.3)'}"></u-back-top>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data(){
  12. return {
  13. content: ''
  14. }
  15. },
  16. onLoad(){
  17. this.getData();
  18. },
  19. methods: {
  20. getData(){
  21. this.$http(this.API.API_ABOUTUS).then(res => {
  22. this.content = res.data?.about;
  23. })
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped="scoped">
  29. </style>