article.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="page flex-col" :style="{'height':height}">
  3. <scroll-view scroll-y="true" class="scroll-y" >
  4. <view class="content-box flex-col">
  5. <!-- <web-view src="http://www.gzqcdj.cn/doc/2.html"></web-view>-->
  6. <rich-text v-html="article.content">
  7. </rich-text>
  8. </view>
  9. </scroll-view>
  10. </view>
  11. </template>
  12. <script>
  13. import {getArticle} from '@/api/groupon.js'
  14. export default {
  15. data() {
  16. return {
  17. height:"",
  18. article:{}
  19. };
  20. },
  21. created(){
  22. let sysInfo=uni.getSystemInfoSync();
  23. this.height= sysInfo.windowHeight - sysInfo.windowBottom +'px';
  24. console.log("获取到的高度",this.height)
  25. },
  26. onLoad(e){
  27. console.log(e)
  28. this.getArticle(e.id);
  29. },
  30. methods: {
  31. getArticle(id){
  32. console.log(id)
  33. getArticle(id).then(res =>{
  34. this.article = res.data
  35. uni.setNavigationBarTitle({
  36. title: res.data.title
  37. });
  38. })
  39. },
  40. },
  41. };
  42. </script>
  43. <style scoped lang="scss">
  44. @import '/static/css/common.css';
  45. @import './index.rpx.css';
  46. </style>