时空网前端
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
525 B

  1. <template>
  2. <view>
  3. <rich-text :nodes="content" v-if="content"></rich-text>
  4. <my-nocontent v-else></my-nocontent>
  5. <!-- 回到顶部 -->
  6. <u-back-top :scroll-top="pageScrollTop"></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_ARTICLE_QA).then(res => {
  22. this.content = res.data.content;
  23. })
  24. }
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped="scoped">
  29. </style>