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