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

31 lines
431 B

<template>
<view>
<uv-parse :content="noticeObj.content"></uv-parse>
</view>
</template>
<script>
import { noticeObjApi } from "@/common/api.js"
export default{
data(){
return{
noticeObj:{}
}
},
mounted() {
this.onNotice()
},
methods:{
onNotice(){
noticeObjApi({}).then(response=>{
this.noticeObj = response.result
}).catch(error=>{
})
}
}
}
</script>
<style>
</style>