deviceInfo.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="zx-container deviceInfo-container">
  3. <view v-for="(item, index) in msgList" :key="index" class="list-item">
  4. <view class="time">{{ item.time }}</view>
  5. <view class="msg-wrap">
  6. <view class="map"></view>
  7. <view class="msg-text">
  8. <view class="title">{{ item.title }}</view>
  9. <view class="dtl-txt">{{ item.msg }}</view>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. const config = require('@/common/config.js');
  17. const http = require('@/common/http.js');
  18. export default {
  19. data() {
  20. return {
  21. msgList: [
  22. { time: '今天 13:14', title: '车辆推动报警', msg: '车辆正在被人推送,请及时查看' },
  23. { time: '今天 13:14', title: '车辆推动报警', msg: '车辆正在被人推送,请及时查看' },
  24. { time: '今天 13:14', title: '车辆推动报警', msg: '车辆正在被人推送,请及时查看' },
  25. ]
  26. }
  27. },
  28. onLoad(option) {
  29. this.queryList(option.car_id)
  30. },
  31. methods: {
  32. queryList(car_id) {
  33. http.postApi(config.API_MESSAGE_LIST, { car_id, msg_type: 'DEVICE' }, res => {
  34. if (res.succeed) {
  35. console.log(111, res.body)
  36. }
  37. })
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. @import "@/libs/css/layout.scss";
  44. .deviceInfo-container {
  45. padding: 24rpx 24rpx 150rpx;
  46. .list-item {
  47. width: 100%;
  48. .time {
  49. font-family: Roboto, Roboto;
  50. font-weight: 400;
  51. font-size: 28rpx;
  52. color: #060809;
  53. text-align: center;
  54. margin: 40rpx 24rpx;
  55. }
  56. .msg-wrap {
  57. width: 100%;
  58. background: #FFFFFF;
  59. border-radius: 40rpx;
  60. padding: 8rpx;
  61. .map {
  62. width: 100%;
  63. height: 384rpx;
  64. background: url('https://qiniu.bms16.com/FufXj_x1qGs3iy7itHZ9oJ3FqG_Q');
  65. background-size: 100%;
  66. }
  67. .msg-text {
  68. padding: 32rpx 24rpx 40rpx;
  69. .title {
  70. font-family: PingFangSC, PingFang SC;
  71. font-weight: bold;
  72. font-size: 36rpx;
  73. color: #060809;
  74. margin-bottom: 16rpx;
  75. }
  76. .dtl-tet {
  77. font-family: PingFangSC, PingFang SC;
  78. font-size: 24rpx;
  79. color: #060809;
  80. }
  81. }
  82. }
  83. }
  84. }
  85. </style>