|
|
- <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>
|