ZZJ
2021-10-22 38f098f7d4ca5831a513a8d50e2efee08d452e03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<template>
  <div class="warn-description">
      <div class="code"><span>设备编码: </span>{{warnDes.code}}</div>
      <div class="location" v-if="warnDes.location">{{warnDes.location}}</div>
      <div class="time"><span>时间: </span>{{warnDes.time}}</div>
      <div class="position" v-if="warnDes.longitude"><span>经度: </span>{{warnDes.longitude}} <span>纬度: </span>{{warnDes.latitude}}</div>
      <div class="warnIcon" v-if="warnDes.warn"><span class="icon iconfont">&#xe71c;</span> {{warnDes.warn}}</div>
  </div>
</template>
 
<script>
export default {
  props :{
    warnDes : {
      type: Object
    }
  }
}
</script>
 
<style scoped lang="scss">
.warn-description {
  .code, .location, .time, .position, .warnIcon {
  text-align: left;
  margin-bottom: 5px;
  }
 
  span {
    font-weight: 700;
  }
 
  .warnIcon {
    color: #FF6464;
  }
 
}
</style>