zixun-info.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <template>
  2. <view class="zixun-info">
  3. <view class="info-title">
  4. {{detail.title || ''}}
  5. </view>
  6. <view class="info-tips">
  7. {{detail.source || ''}}·{{detail.audit_time || ''}}
  8. </view>
  9. <view class="info-text" v-html="content"></view>
  10. <view class="u-flex u-row-center">
  11. <button class="share-box u-flex" open-type="share">
  12. <text class="text1">分享至</text>
  13. <u-icon name="weixin-fill" color="#3ECF76" size="22"></u-icon>
  14. </button>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import {
  20. article_get_detail
  21. } from "@/units/inquire.js"
  22. export default {
  23. data() {
  24. return {
  25. id: '',
  26. detail: {},
  27. content: ''
  28. }
  29. },
  30. onLoad(option) {
  31. this.id = option.id
  32. this.getdetail()
  33. },
  34. onShareAppMessage() {
  35. return {
  36. imageUrl: this.detail.image,
  37. title: this.detail.title
  38. }
  39. },
  40. methods: {
  41. getdetail() {
  42. article_get_detail({
  43. id: this.id
  44. }).then(res => {
  45. this.detail = res.data
  46. const a = new RegExp('style=""', 'gi')
  47. var content = res.data.content.replace(a, `styles`)
  48. const regex = new RegExp('<img', 'gi')
  49. this.content = content.replace(regex, `<img style="max-width: 100%; height: auto"`)
  50. })
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss">
  56. .zixun-info {
  57. padding: 0 32rpx;
  58. .share-box {
  59. margin: 50rpx auto;
  60. height: 80rpx;
  61. background: #F5F5F5;
  62. border-radius: 40rpx;
  63. padding: 0 40rpx;
  64. line-height: 80rpx;
  65. .text1 {
  66. font-size: 28rpx;
  67. font-family: PingFangSC-Regular, PingFang SC;
  68. font-weight: 400;
  69. color: #222222;
  70. margin-right: 26rpx;
  71. }
  72. }
  73. .share-box::after {
  74. background-color: rgba(0, 0, 0, 0);
  75. border: none;
  76. }
  77. .info-text {
  78. font-size: 36rpx;
  79. font-family: PingFangSC-Regular, PingFang SC;
  80. font-weight: 400;
  81. color: #222222;
  82. }
  83. .info-tips {
  84. font-size: 24rpx;
  85. font-family: SFPro-Regular, SFPro;
  86. font-weight: 400;
  87. color: #777777;
  88. margin-bottom: 20rpx;
  89. }
  90. .info-title {
  91. font-size: 48rpx;
  92. font-family: PingFangSC-Medium, PingFang SC;
  93. font-weight: 500;
  94. color: #222222;
  95. padding: 28rpx 0 16rpx 0;
  96. }
  97. }
  98. </style>