messageView.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="uni-flex article uni-column">
  3. <view class="uni-flex uni-h4 article-title">{{article.title}}</view>
  4. <view class="uni-flex color-555 article-time">
  5. <view class="" style="font-size: 24upx;">{{article.createDate}}</view>
  6. </view>
  7. <view class="uni-flex pic" v-if="mode==1"><image :src="article.pic" mode="widthFix"></image></view>
  8. <view class="uni-flex ">
  9. <u-parse :content="htmlString" @preview="preview" @navigate="navigate" />
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import marked from '../../../components/marked'
  15. import uParse from '@/components/u-parse/u-parse.vue'
  16. export default {
  17. components: {
  18. uParse
  19. },
  20. data() {
  21. return {
  22. id: 0,
  23. article: {},
  24. htmlString: "",
  25. userid : 0,
  26. mode: 0
  27. };
  28. },
  29. onLoad(e) {
  30. this.id = e.id;
  31. this.userid = e.userid;
  32. this.getData();
  33. },
  34. methods: {
  35. preview(src, e) {
  36. // do something
  37. //console.log("src: " + src);
  38. },
  39. navigate(href, e) {
  40. // 如允许点击超链接跳转,则应该打开一个新页面,并传入href,由新页面内嵌webview组件负责显示该链接内容
  41. //console.log("href: " + href);
  42. /* uni.showModal({
  43. content: "点击链接为:" + href,
  44. showCancel: false
  45. }) */
  46. },
  47. getData() {
  48. uni.showLoading({
  49. title: '页面加载中',
  50. mask: true
  51. });
  52. uni.request({
  53. url: this.webUrl + 'GetMessageView',
  54. method: 'POST',
  55. data: {
  56. userid: this.userid,
  57. id: this.id
  58. },
  59. header: {
  60. 'content-type': 'application/x-www-form-urlencoded'
  61. },
  62. success: res => {
  63. uni.hideLoading();
  64. this.article = res.data.data;
  65. this.mode =this.article.mode;
  66. uni.setNavigationBarTitle({
  67. title: this.article.title
  68. });
  69. this.htmlString = marked(this.article.reMark);
  70. },
  71. fail: () => {},
  72. complete: () => {}
  73. });
  74. }
  75. }
  76. }
  77. </script>
  78. <style>
  79. /* @import url("../../../components/gaoyia-parse/parse.css"); */
  80. @import url("../../../components/gaoyia-parse/parse.css");
  81. .article .article-title, .article-time,.pic{
  82. padding: 0 50upx;
  83. }
  84. .article .pic {
  85. margin-top: 45upx;
  86. /* #ifdef H5 */
  87. margin-bottom: 45upx;
  88. /* #endif */
  89. margin-bottom: ;
  90. }
  91. .article .article-title {
  92. margin-top: 50upx;
  93. margin-bottom: 10upx;
  94. }
  95. .article .article-time {
  96. font-size: 22upx;
  97. color: #919294;
  98. justify-content: space-between;
  99. }
  100. .article .article-time .article-btn {
  101. width: 100upx;
  102. height: 42upx;
  103. text-align: center;
  104. line-height: 42upx;
  105. color: #fceaea;
  106. background: #dd0000;
  107. }
  108. .article .wxParse .p {
  109. text-indent: 2em;
  110. }
  111. .article .wxParse .img{
  112. width: 730upx !important;
  113. margin-left: 11.5upx;
  114. margin-bottom: 3upx;
  115. }
  116. </style>