zixun-info.vue 2.0 KB

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