租房小程序前端代码
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.

30 lines
431 B

6 months ago
  1. <template>
  2. <view>
  3. <uv-parse :content="noticeObj.content"></uv-parse>
  4. </view>
  5. </template>
  6. <script>
  7. import { noticeObjApi } from "@/common/api.js"
  8. export default{
  9. data(){
  10. return{
  11. noticeObj:{}
  12. }
  13. },
  14. mounted() {
  15. this.onNotice()
  16. },
  17. methods:{
  18. onNotice(){
  19. noticeObjApi({}).then(response=>{
  20. this.noticeObj = response.result
  21. }).catch(error=>{
  22. })
  23. }
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>