海南旅游项目 前端仓库
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.

34 lines
681 B

  1. <template>
  2. <view class="lf-m-l-32 lf-m-r-32">
  3. <rich-text :nodes="content" v-if="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. notice_id: 0
  15. }
  16. },
  17. onLoad(e){
  18. this.notice_id = e.notice_id
  19. this.getData();
  20. },
  21. methods: {
  22. getData(){
  23. this.$http(this.API.API_NOTICEDETAILS,{id:this.notice_id}).then(res => {
  24. this.content = res.data?.content;
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped="scoped">
  31. </style>