123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <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 : 3})
- .then(res=>{
- console.log(res);
- if(res.code == 200) {
- this.content = res.data.content;
- this.isShow = true;
- }
- })
- .catch(err=>{
- this.utils.Tip("网络错误,请稍后尝试");
- });
- }
- }
- }
- </script>
- <style>
- @import url("/components/gaoyia-parse/parse.css");
-
- #box {
- z-index: -1;
- padding: 0px 10px 0 10px;
- }
- </style>
|