deviceInfo.vue 3.6 KB

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