<template> <view> <view id="box"> <u-parse :content="content" :noData="content" v-if="isShow"/> </view> </view> </template> <script> import uParse from '@/components/gaoyia-parse/parse.vue' export default { components: { uParse }, data() { return { content:"", isShow:false } }, onLoad(options) { this.get_article(); }, methods: { get_article(){ this .request .post("getContent",{cate_id : 4}) .then(res=>{ console.log(res); if(res.code == 200) { this.content = res.data.content; this.isShow = true; } }) .catch(err=>{ this.utils.Tip("网络错误,请稍后尝试"); }); } } } </script> <style> #box { z-index: -1; padding: 0px 10px 0 10px; } </style>