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
38
39
40
<template>
  <div class="elec-module">
      <div class="title"></div>
 
      <div class="elec-item"
       v-for="(item,index) in warnArr"
       :key="index">
          <warnDescription 
        :warnDes="{code:item.code,
        time:item.time,
        location:item.location}"/>
      </div>
      
  </div>
</template>
 
<script>
import warnDescription from '@/pages/internetEquipment/components/warnDescription'
export default {
    props :{
         warnArr:{
            type: Array
        }
    },
    components :{
        warnDescription
    }
}
</script>
 
<style scoped lang="scss">
.elec-module {
    width: 280px;
    height: 292px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(141, 164, 187, 0.25);
    border-radius: 15px;
    overflow-y: scroll;
}
</style>