deviceInfo.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="zx-container deviceInfo-container">
  3. <!-- <map style="width: 100%; height: 500px;" :latitude="latitude"
  4. :longitude="longitude" :markers="markers" show-location>
  5. </map> -->
  6. <view v-for="(item, index) in msgList" :key="index" class="list-item">
  7. <view class="time">{{ item.ctime }}</view>
  8. <view class="msg-wrap">
  9. <view v-if="item.latitude" class="map">
  10. <!-- #ifdef APP -->
  11. <googleMap :keyId="index" width="100%" height='100%' :mapData='{type:1}' :myLocation='{
  12. latitude:item.latitude,
  13. longitude:item.longitude,
  14. }' ></googleMap>
  15. <!-- #endif -->
  16. </view>
  17. <view class="msg-text">
  18. <view class="title">{{ item.title }}</view>
  19. <view class="dtl-txt">{{ item.overview }}</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. const config = require('@/common/config.js');
  27. const http = require('@/common/http.js');
  28. var common = require('../../common/common.js');
  29. import googleMap from "@/component/googleMap/googleMap";
  30. export default {
  31. components:{
  32. googleMap
  33. },
  34. data() {
  35. return {
  36. // latitude: 23.090994,
  37. // longitude: 113.314004,
  38. // markers: [{
  39. // id: 1345,
  40. // latitude: 23.090994,
  41. // longitude: 113.314004,
  42. // iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
  43. // width: 30,
  44. // height: 30,
  45. // customCallout: {
  46. // anchorY: -45, // Y轴偏移量
  47. // anchorX: -100, // X轴偏移量
  48. // display: 'ALWAYS', // 'BYCLICK':点击显示; 'ALWAYS':常显
  49. // },
  50. // }], // 标记点
  51. msgList: [
  52. // { time: '今天 13:14', title: '车辆推动报警', overview: '车辆正在被人推送,请及时查看' },
  53. // { time: '今天 13:14', title: '车辆推动报警', overview: '车辆正在被人推送,请及时查看' },
  54. // { time: '今天 13:14', title: '车辆推动报警', overview: '车辆正在被人推送,请及时查看' },
  55. ]
  56. }
  57. },
  58. onLoad(option) {
  59. this.queryList(option.car_id)
  60. },
  61. methods: {
  62. queryList(car_id) {
  63. http.postApi(config.API_MESSAGE_LIST, { car_id, msg_type: 'DEVICE' }, res => {
  64. if (res.succeed) {
  65. this.msgList = res.body.data.list
  66. this.msgList.map(item => {
  67. item.ctime = common.formatTime(item.ctime)
  68. })
  69. }
  70. })
  71. }
  72. }
  73. }
  74. </script>
  75. <style lang="scss" scoped>
  76. @import "@/libs/css/layout.scss";
  77. .deviceInfo-container {
  78. padding: 24rpx 24rpx 150rpx;
  79. .list-item {
  80. width: 100%;
  81. .time {
  82. font-family: Roboto, Roboto;
  83. font-weight: 400;
  84. font-size: 28rpx;
  85. color: #060809;
  86. text-align: center;
  87. margin: 40rpx 24rpx;
  88. }
  89. .msg-wrap {
  90. width: 100%;
  91. background: #FFFFFF;
  92. border-radius: 40rpx;
  93. padding: 8rpx;
  94. .map {
  95. width: 100%;
  96. height: 384rpx;
  97. background: url('https://qiniu.bms16.com/FufXj_x1qGs3iy7itHZ9oJ3FqG_Q');
  98. background-size: 100%;
  99. }
  100. .msg-text {
  101. padding: 32rpx 24rpx 40rpx;
  102. .title {
  103. font-family: PingFangSC, PingFang SC;
  104. font-weight: bold;
  105. font-size: 36rpx;
  106. color: #060809;
  107. margin-bottom: 16rpx;
  108. }
  109. .dtl-tet {
  110. font-family: PingFangSC, PingFang SC;
  111. font-size: 24rpx;
  112. color: #060809;
  113. }
  114. }
  115. }
  116. }
  117. }
  118. </style>