|
@@ -1,12 +1,15 @@
|
|
|
<template>
|
|
|
<view class="zx-container deviceInfo-container">
|
|
|
+ <!-- <map style="width: 100%; height: 500px;" :latitude="latitude"
|
|
|
+ :longitude="longitude" :markers="markers" show-location>
|
|
|
+ </map> -->
|
|
|
<view v-for="(item, index) in msgList" :key="index" class="list-item">
|
|
|
- <view class="time">{{ item.time }}</view>
|
|
|
+ <view class="time">{{ item.ctime }}</view>
|
|
|
<view class="msg-wrap">
|
|
|
<view class="map"></view>
|
|
|
<view class="msg-text">
|
|
|
<view class="title">{{ item.title }}</view>
|
|
|
- <view class="dtl-txt">{{ item.msg }}</view>
|
|
|
+ <view class="dtl-txt">{{ item.overview }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -16,13 +19,29 @@
|
|
|
<script>
|
|
|
const config = require('@/common/config.js');
|
|
|
const http = require('@/common/http.js');
|
|
|
+var common = require('../../common/common.js');
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ // latitude: 23.090994,
|
|
|
+ // longitude: 113.314004,
|
|
|
+ // markers: [{
|
|
|
+ // id: 1345,
|
|
|
+ // latitude: 23.090994,
|
|
|
+ // longitude: 113.314004,
|
|
|
+ // iconPath: 'https://qiniu.bms16.com/Fim2CWvIaWVoqPwQsJbNn-fcS-Ku',
|
|
|
+ // width: 30,
|
|
|
+ // height: 30,
|
|
|
+ // customCallout: {
|
|
|
+ // anchorY: -45, // Y轴偏移量
|
|
|
+ // anchorX: -100, // X轴偏移量
|
|
|
+ // display: 'ALWAYS', // 'BYCLICK':点击显示; 'ALWAYS':常显
|
|
|
+ // },
|
|
|
+ // }], // 标记点
|
|
|
msgList: [
|
|
|
- { time: '今天 13:14', title: '车辆推动报警', msg: '车辆正在被人推送,请及时查看' },
|
|
|
- { time: '今天 13:14', title: '车辆推动报警', msg: '车辆正在被人推送,请及时查看' },
|
|
|
- { time: '今天 13:14', title: '车辆推动报警', msg: '车辆正在被人推送,请及时查看' },
|
|
|
+ // { time: '今天 13:14', title: '车辆推动报警', overview: '车辆正在被人推送,请及时查看' },
|
|
|
+ // { time: '今天 13:14', title: '车辆推动报警', overview: '车辆正在被人推送,请及时查看' },
|
|
|
+ // { time: '今天 13:14', title: '车辆推动报警', overview: '车辆正在被人推送,请及时查看' },
|
|
|
]
|
|
|
}
|
|
|
},
|
|
@@ -33,7 +52,10 @@ export default {
|
|
|
queryList(car_id) {
|
|
|
http.postApi(config.API_MESSAGE_LIST, { car_id, msg_type: 'DEVICE' }, res => {
|
|
|
if (res.succeed) {
|
|
|
- console.log(111, res.body)
|
|
|
+ this.msgList = res.body.data.list
|
|
|
+ this.msgList.map(item => {
|
|
|
+ item.ctime = common.formatTime(item.ctime)
|
|
|
+ })
|
|
|
}
|
|
|
})
|
|
|
}
|