detail.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <view class="container">
  3. <navBar name="信息详情"></navBar>
  4. <view class="title">{{info.title}}</view>
  5. <view>{{info.overview}}</view>
  6. <image v-if="info.cover" :src="info.cover" class="img" mode="aspectFit" />
  7. <rich-text :nodes="info.content"></rich-text>
  8. <location v-if="latlng.latitude && latlng.longitude" :latlng="latlng" />
  9. </view>
  10. </template>
  11. <script>
  12. const config = require('@/common/config.js');
  13. const http = require('@/common/http.js');
  14. const request = require('@/common/request.js');
  15. const common = require('@/common/common.js');
  16. import location from './location.vue'
  17. export default {
  18. data() {
  19. return {
  20. id: '',
  21. info: {},
  22. latlng: {
  23. }
  24. }
  25. },
  26. components: {
  27. location
  28. },
  29. onLoad(options) {
  30. this.id = options.id
  31. this.queryMsgDetail()
  32. },
  33. methods: {
  34. queryMsgDetail() {
  35. const req = {
  36. type: 'PLAT',
  37. id: Number(this.id)
  38. }
  39. http.postApi(config.API_MESSAGE_DTL, req, res => {
  40. if (res.succeed) {
  41. this.info = res.data.data
  42. console.log(this.info)
  43. // 正则匹配所有<img>标签并插入自适应属性
  44. this.info.content = (this.info.content || '').replace(/<img/g,
  45. '<img style="max-width: 100%; height: auto;"')
  46. // this.info.latitude = 28.909
  47. // this.info.longitude = 115.39742
  48. if (this.info.latitude && this.info.longitude) {
  49. this.latlng = {
  50. latitude: this.info.latitude,
  51. longitude: this.info.longitude
  52. }
  53. }
  54. }
  55. })
  56. },
  57. }
  58. }
  59. </script>
  60. <style lang="scss" scoped>
  61. .container {
  62. display: flex;
  63. flex-direction: column;
  64. padding: 20rpx;
  65. .title {
  66. font-size: 36rpx;
  67. font-weight: bold;
  68. margin: 20rpx;
  69. }
  70. .img {
  71. width: 750rpx;
  72. }
  73. }
  74. </style>